forked from DGNum/colmena
nix/deployment: Misc cleanup
This commit is contained in:
parent
04976e5fda
commit
064432f38e
2 changed files with 7 additions and 9 deletions
|
@ -140,9 +140,8 @@ impl Deployment {
|
|||
futures.push(deployment.clone().upload_keys_to_node(meta.clone(), target));
|
||||
}
|
||||
|
||||
let result: NixResult<Vec<()>> = join_all(futures).await.into_iter().collect();
|
||||
|
||||
result?;
|
||||
join_all(futures).await
|
||||
.into_iter().collect::<NixResult<Vec<()>>>()?;
|
||||
|
||||
Ok(())
|
||||
});
|
||||
|
@ -166,9 +165,8 @@ impl Deployment {
|
|||
futures.push(deployment.clone().execute_chunk(meta.clone(), chunk));
|
||||
}
|
||||
|
||||
let result: NixResult<Vec<()>> = join_all(futures).await.into_iter().collect();
|
||||
|
||||
result?;
|
||||
join_all(futures).await
|
||||
.into_iter().collect::<NixResult<Vec<()>>>()?;
|
||||
|
||||
Ok(())
|
||||
});
|
||||
|
@ -233,8 +231,8 @@ impl Deployment {
|
|||
futures.push(self.clone().deploy_node(parent.clone(), target, profile.clone()));
|
||||
}
|
||||
|
||||
let result: NixResult<Vec<()>> = join_all(futures).await.into_iter().collect();
|
||||
result?;
|
||||
join_all(futures).await
|
||||
.into_iter().collect::<NixResult<Vec<()>>>()?;
|
||||
|
||||
// Create GC root
|
||||
if self.options.create_gc_roots {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue