mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-21 00:01:08 +00:00
Merge pull request #13184 from nitzmahone/hostvars_undefined_fix
hostvars should return j2 undefined as instance, not type
This commit is contained in:
@@ -77,7 +77,7 @@ class HostVars(collections.Mapping):
|
||||
def __getitem__(self, host_name):
|
||||
|
||||
if host_name not in self._lookup:
|
||||
return j2undefined
|
||||
return j2undefined()
|
||||
|
||||
host = self._lookup.get(host_name)
|
||||
data = self._variable_manager.get_vars(loader=self._loader, host=host, play=self._play, include_hostvars=False)
|
||||
|
||||
Reference in New Issue
Block a user