Commit dacb6b85 by James Cammarata

Use utils.merge_hash() instead of update for cache merging

Fixes #8968
parent 239b6e79
......@@ -598,7 +598,7 @@ class Runner(object):
# merge the VARS and SETUP caches for this host
combined_cache = self.setup_cache.copy()
combined_cache.update(self.vars_cache)
combined_cache = utils.merge_hash(combined_cache, self.vars_cache)
hostvars = HostVars(combined_cache, self.inventory, vault_password=self.vault_pass)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment