Fix test of whether a result has a failed host

pull/12525/head
Toshio Kuratomi 9 years ago
parent 1c49e3b842
commit fa9ea32a86

@ -21,6 +21,7 @@ __metaclass__ = type
import os
from ansible.errors import AnsibleError
from ansible.template import Templar
class IncludedFile:
@ -46,7 +47,7 @@ class IncludedFile:
included_files = []
for res in results:
if res._host in tqm._failed_hosts:
if res._host.name in tqm._failed_hosts:
raise AnsibleError("host is failed, not including files")
if res._task.action == 'include':

Loading…
Cancel
Save