Skip to content

Commit

Permalink
fix: remove duplication of nodes for DeployGuestosToSomeApiBoundaryNo…
Browse files Browse the repository at this point in the history
…des (#510)

Co-authored-by: Saša Tomić <sasa.tomic@dfinity.org>
  • Loading branch information
r-birkner and sasa-tomic committed Jun 21, 2024
1 parent 3087304 commit 11a3454
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rs/cli/src/ic_admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,6 @@ impl ProposeCommand {
Self::RemoveApiBoundaryNodes { nodes } => nodes.iter().flat_map(|n| ["--nodes".to_string(), n.to_string()]).collect::<Vec<_>>(),
Self::DeployGuestosToSomeApiBoundaryNodes { nodes, version } => [
nodes.iter().flat_map(|n| ["--nodes".to_string(), n.to_string()]).collect::<Vec<_>>(),
nodes.iter().map(|n| n.to_string()).collect::<Vec<_>>(),
vec!["--version".to_string(), version.to_string()],
]
.concat(),
Expand Down

0 comments on commit 11a3454

Please sign in to comment.