mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
include_vars now properly deals with hash_behaviour (#15895)
This commit is contained in:
@@ -676,6 +676,6 @@ class VariableManager:
|
||||
if host_name not in self._vars_cache:
|
||||
self._vars_cache[host_name] = dict()
|
||||
if varname in self._vars_cache[host_name] and isinstance(self._vars_cache[host_name][varname], MutableMapping) and isinstance(value, MutableMapping):
|
||||
self._vars_cache[host_name][varname] = combine_vars(self._vars_cache[host_name][varname], value)
|
||||
self._vars_cache[host_name] = combine_vars(self._vars_cache[host_name], {varname: value})
|
||||
else:
|
||||
self._vars_cache[host_name][varname] = value
|
||||
|
||||
Reference in New Issue
Block a user