Commit 22639a2a by James Cammarata

Fix mistake in fact setting to nonpersistent cache in VariableManager

Fixes #12301
parent aa3b290e
...@@ -390,7 +390,7 @@ class VariableManager: ...@@ -390,7 +390,7 @@ class VariableManager:
assert isinstance(facts, dict) assert isinstance(facts, dict)
if host.name not in self._fact_cache: if host.name not in self._nonpersistent_fact_cache:
self._nonpersistent_fact_cache[host.name] = facts self._nonpersistent_fact_cache[host.name] = facts
else: else:
try: try:
......
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