Skip to content

Commit 39498d1

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Raphael Götz <52959657+raphael-goetz@users.noreply.github.com>
1 parent 5fe5608 commit 39498d1

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

crates/taurus/src/main.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,9 @@ async fn main() {
236236
}
237237
}
238238

239-
if let Some(ser) = &runtime_status_service {
240-
ser.update_runtime_status(tucana::shared::execution_runtime_status::Status::Stopped)
239+
if let Some(status_service) = &runtime_status_service {
240+
status_service
241+
.update_runtime_status(tucana::shared::execution_runtime_status::Status::Stopped)
241242
.await;
242243
};
243244

0 commit comments

Comments
 (0)