mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix return statement where we short circuit _get_delegated_vars (#48102)
This commit is contained in:
parent
df6b0b0e9e
commit
cb5626cc09
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/loop-cache-include-apply.yml
Normal file
2
changelogs/fragments/loop-cache-include-apply.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- delegate_to - Fix issue where delegate_to was upplied via ``apply`` on an include, where a loop was present on the include
|
|
@ -489,7 +489,7 @@ class VariableManager:
|
||||||
def _get_delegated_vars(self, play, task, existing_variables):
|
def _get_delegated_vars(self, play, task, existing_variables):
|
||||||
if not hasattr(task, 'loop'):
|
if not hasattr(task, 'loop'):
|
||||||
# This "task" is not a Task, so we need to skip it
|
# This "task" is not a Task, so we need to skip it
|
||||||
return {}
|
return {}, None
|
||||||
|
|
||||||
# we unfortunately need to template the delegate_to field here,
|
# we unfortunately need to template the delegate_to field here,
|
||||||
# as we're fetching vars before post_validate has been called on
|
# as we're fetching vars before post_validate has been called on
|
||||||
|
|
Loading…
Reference in a new issue