Skip to content

Commit 9b25797

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 b8e2ae5 commit 9b25797

1 file changed

Lines changed: 0 additions & 20 deletions

File tree

crates/base/src/client/mod.rs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -115,26 +115,6 @@ impl DracoRuntimeStatusService {
115115
})),
116116
};
117117

118-
match client.update(request).await {
119-
Ok(response) => {
120-
log::info!(
121-
"Was the update of the RuntimeStatus accepted by Sagittarius? {}",
122-
response.into_inner().success
123-
);
124-
}
125-
Err(err) => {
126-
log::error!("Failed to update RuntimeStatus: {:?}", err);
127-
}
128-
}
129-
}
130-
async fn update_runtime_status(&self, status: AdapterRuntimeStatus) {
131-
log::info!("Updating the current Runtime Status!");
132-
let mut client = RuntimeStatusServiceClient::new(self.channel.clone());
133-
134-
let request = RuntimeStatusUpdateRequest {
135-
status: Some(Status::AdapterRuntimeStatus(status)),
136-
};
137-
138118
match client.update(request).await {
139119
Ok(response) => {
140120
log::info!(

0 commit comments

Comments
 (0)