Skip to content

Commit 5fe5608

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 1b579e5 commit 5fe5608

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/taurus/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async fn main() {
9292
.send()
9393
.await;
9494

95-
let client = TaurusRuntimeStatusService::from_url(
95+
let status_service = TaurusRuntimeStatusService::from_url(
9696
config.aquila_url.clone(),
9797
"taurus".into(),
9898
vec![RuntimeFeature {
@@ -108,10 +108,10 @@ async fn main() {
108108
)
109109
.await;
110110

111-
client
111+
status_service
112112
.update_runtime_status(tucana::shared::execution_runtime_status::Status::Running)
113113
.await;
114-
runtime_status_service = Some(client);
114+
runtime_status_service = Some(status_service);
115115
}
116116

117117
let mut worker_task = tokio::spawn(async move {

0 commit comments

Comments
 (0)