Skip to content

Commit 65e20f7

Browse files
committed
no unwrap
1 parent d27c461 commit 65e20f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

orchestrator/src/coordinator.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ where
9393

9494
let (stable, beta, nightly) = join!(stable.shutdown(), beta.shutdown(), nightly.shutdown());
9595

96-
stable.unwrap(); // ContainerTaskPanickedSnafu
97-
beta.unwrap();
98-
nightly.unwrap();
96+
stable?;
97+
beta?;
98+
nightly?;
9999

100100
Ok(backend)
101101
}

0 commit comments

Comments
 (0)