Skip to content

Commit 68a64ea

Browse files
fix: clippy
1 parent ea4c8e5 commit 68a64ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ic-agent/src/agent/http_transport/dynamic_routing/dynamic_route_provider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ impl<S> Drop for DynamicRouteProvider<S> {
251251
let tracker = self.tracker.clone();
252252
// If no runtime is available do nothing.
253253
if let Ok(handle) = Handle::try_current() {
254-
let _ = handle.spawn(async move {
254+
handle.spawn(async move {
255255
tracker.wait().await;
256256
warn!("{DYNAMIC_ROUTE_PROVIDER}: stopped gracefully");
257257
});

0 commit comments

Comments
 (0)