We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1aee2b commit d1bbebcCopy full SHA for d1bbebc
compiler/base/orchestrator/src/coordinator.rs
@@ -1314,15 +1314,14 @@ impl Container {
1314
token: CancellationToken,
1315
cmd: ExecuteCommandRequest,
1316
) -> Result<Option<String>, VersionError> {
1317
- let v = self.spawn_cargo_task(token.clone(), cmd).await?;
1318
let SpawnCargo {
1319
permit: _permit,
1320
task,
1321
stdin_tx,
1322
stdout_rx,
1323
stderr_rx,
1324
status_rx,
1325
- } = v;
+ } = self.spawn_cargo_task(token, cmd).await?;
1326
1327
drop(stdin_tx);
1328
drop(status_rx);
0 commit comments