Merge branch 'iterator-returncode' of https://github.com/axelspringer/ansible into axelspringer-iterator-returncode
This commit is contained in:
commit
ea6efdbf2c
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ class PlayIterator:
|
||||||
self._host_states[host.name] = s
|
self._host_states[host.name] = s
|
||||||
|
|
||||||
def get_failed_hosts(self):
|
def get_failed_hosts(self):
|
||||||
return dict((host, True) for (host, state) in iteritems(self._host_states) if state.run_state == self.ITERATING_COMPLETE and state.fail_state != self.FAILED_NONE)
|
return dict((host, True) for (host, state) in iteritems(self._host_states) if self._check_failed_state(state))
|
||||||
|
|
||||||
def _check_failed_state(self, state):
|
def _check_failed_state(self, state):
|
||||||
if state is None:
|
if state is None:
|
||||||
|
|
Loading…
Reference in a new issue