Print hostname when fails to generate keyed groups (#49609)
This commit is contained in:
parent
f6b211890a
commit
7aa11c441d
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ class Constructable(object):
|
|||
key = self._compose(keyed.get('key'), variables)
|
||||
except Exception as e:
|
||||
if strict:
|
||||
raise AnsibleParserError("Could not generate group from %s entry: %s" % (keyed.get('key'), to_native(e)))
|
||||
raise AnsibleParserError("Could not generate group for host %s from %s entry: %s" % (host, keyed.get('key'), to_native(e)))
|
||||
continue
|
||||
|
||||
if key:
|
||||
|
|
Loading…
Reference in a new issue