mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Fix test of whether a result has a failed host
This commit is contained in:
@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user