mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Do not copy variable_manager each time. Instead, keep host and local variable_manager sync.
Fix https://github.com/ansible/ansible/issues/13221
This commit is contained in:
@@ -79,6 +79,15 @@ class HostVars(collections.Mapping):
|
||||
self._cached_result[sha1_hash] = result
|
||||
return result
|
||||
|
||||
def set_host_variable(self, host, varname, value):
|
||||
self._variable_manager.set_host_variable(host, varname, value)
|
||||
|
||||
def set_nonpersistent_facts(self, host, facts):
|
||||
self._variable_manager.set_nonpersistent_facts(host, facts)
|
||||
|
||||
def set_host_facts(self, host, facts):
|
||||
self._variable_manager.set_host_facts(host, facts)
|
||||
|
||||
def __contains__(self, host_name):
|
||||
return self._find_host(host_name) is not None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user