From 618627febd554d9ce34d792e4d6e69ed9c4f75eb Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 13 Oct 2017 11:45:28 -0400 Subject: [PATCH] remove hosts from removed when rescuing fixes #31707 --- lib/ansible/executor/play_iterator.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ansible/executor/play_iterator.py b/lib/ansible/executor/play_iterator.py index 47c18c5d16..329a9f018c 100644 --- a/lib/ansible/executor/play_iterator.py +++ b/lib/ansible/executor/play_iterator.py @@ -370,6 +370,9 @@ class PlayIterator: elif state.run_state == self.ITERATING_RESCUE: # The process here is identical to ITERATING_TASKS, except instead # we move into the always portion of the block. + if host.name in self._play._removed_hosts: + self._play._removed_hosts.remove(host.name) + if state.rescue_child_state: (state.rescue_child_state, task) = self._get_next_task_from_state(state.rescue_child_state, host=host, peek=peek, in_child=True) if self._check_failed_state(state.rescue_child_state):