mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
ensure if we get a non-Task object in _get_delegated_vars, we return early (#44934)
This commit is contained in:
@@ -487,6 +487,10 @@ class VariableManager:
|
||||
return variables
|
||||
|
||||
def _get_delegated_vars(self, play, task, existing_variables):
|
||||
if not hasattr(task, 'loop'):
|
||||
# This "task" is not a Task, so we need to skip it
|
||||
return {}
|
||||
|
||||
# we unfortunately need to template the delegate_to field here,
|
||||
# as we're fetching vars before post_validate has been called on
|
||||
# the task that has been passed in
|
||||
|
||||
Reference in New Issue
Block a user