Skip to content

Commit 5bf4ce6

Browse files
authored
Merge pull request #311 from zhaofengli/fix-eval-node-limit-zero
deployment: Fix typo that broke --eval-node-limit=0
2 parents 5e0fbc4 + e74dc1d commit 5bf4ce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nix/deployment/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl Deployment {
203203
let eval_limit = self
204204
.evaluation_node_limit
205205
.get_limit()
206-
.unwrap_or(self.targets.len());
206+
.unwrap_or(targets.len());
207207

208208
let mut futures = Vec::new();
209209

0 commit comments

Comments
 (0)