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
|
@ -52,7 +52,7 @@
|
|||
|
||||
devShell = pkgs.mkShell {
|
||||
inputsFrom = [ defaultPackage ];
|
||||
nativeBuildInputs = with pkgs; [ mdbook python3 ];
|
||||
packages = with pkgs; [ clippy mdbook python3 ];
|
||||
shellHook = ''
|
||||
export NIX_PATH=nixpkgs=${pkgs.path}
|
||||
'';
|
||||
|
|
|
@ -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…
Reference in a new issue