mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Avoid 2nd processing of facts for actions
include_vars and set_fact are already updating hostvars in strategy no need to 're add again' with lower priority the same data. fixes #37535, mostly by avoiding reprocessing and 'cleaning'
This commit is contained in:
@@ -593,7 +593,7 @@ class TaskExecutor:
|
||||
failed_when_result = False
|
||||
return failed_when_result
|
||||
|
||||
if 'ansible_facts' in result:
|
||||
if 'ansible_facts' in result and self._task.action not in ('set_fact', 'include_vars'):
|
||||
vars_copy.update(namespace_facts(result['ansible_facts']))
|
||||
if C.INJECT_FACTS_AS_VARS:
|
||||
vars_copy.update(clean_facts(result['ansible_facts']))
|
||||
@@ -651,7 +651,7 @@ class TaskExecutor:
|
||||
if self._task.register:
|
||||
variables[self._task.register] = wrap_var(result)
|
||||
|
||||
if 'ansible_facts' in result:
|
||||
if 'ansible_facts' in result and self._task.action not in ('set_fact', 'include_vars'):
|
||||
variables.update(namespace_facts(result['ansible_facts']))
|
||||
if C.INJECT_FACTS_AS_VARS:
|
||||
variables.update(clean_facts(result['ansible_facts']))
|
||||
|
||||
Reference in New Issue
Block a user