mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #24506 from rallytime/bp-24450
Backport #24450 to 2015.5
This commit is contained in:
commit
cb5546085c
1 changed files with 4 additions and 4 deletions
|
@ -139,10 +139,10 @@ class Batch(object):
|
|||
for ping_ret in self.ping_gen:
|
||||
if ping_ret is None:
|
||||
break
|
||||
if ping_ret not in self.minions:
|
||||
self.minions.append(ping_ret)
|
||||
to_run.append(ping_ret)
|
||||
|
||||
m = next(ping_ret.iterkeys())
|
||||
if m not in self.minions:
|
||||
self.minions.append(m)
|
||||
to_run.append(m)
|
||||
for queue in iters:
|
||||
try:
|
||||
# Gather returns until we get to the bottom
|
||||
|
|
Loading…
Add table
Reference in a new issue