mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #27877 from rallytime/bp-27774
Back-port #27774 to 2015.8
This commit is contained in:
commit
4fb20d9b4f
1 changed files with 2 additions and 2 deletions
|
@ -250,9 +250,9 @@ class SaltCMD(parsers.SaltCMDOptionParser):
|
|||
isinstance(minion_ret, string_types)
|
||||
and minion_ret.startswith("Minion did not return")
|
||||
):
|
||||
if "Not connected" in ret[each_minion]:
|
||||
if "Not connected" in minion_ret:
|
||||
not_connected_minions.append(each_minion)
|
||||
elif "No response" in ret[each_minion]:
|
||||
elif "No response" in minion_ret:
|
||||
not_response_minions.append(each_minion)
|
||||
not_return_counter += 1
|
||||
not_return_minions.append(each_minion)
|
||||
|
|
Loading…
Add table
Reference in a new issue