mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes #5965 Ensure the inject for each item in a loop is un-altered
This commit is contained in:
parent
abb4f2fbda
commit
0f95a905d9
1 changed files with 4 additions and 2 deletions
|
@ -628,7 +628,9 @@ class Runner(object):
|
|||
all_failed = False
|
||||
results = []
|
||||
for x in items:
|
||||
inject['item'] = x
|
||||
# use a fresh inject for each item
|
||||
this_inject = inject.copy()
|
||||
this_inject['item'] = x
|
||||
|
||||
# TODO: this idiom should be replaced with an up-conversion to a Jinja2 template evaluation
|
||||
if isinstance(self.complex_args, basestring):
|
||||
|
@ -640,7 +642,7 @@ class Runner(object):
|
|||
host,
|
||||
self.module_name,
|
||||
self.module_args,
|
||||
inject,
|
||||
this_inject,
|
||||
port,
|
||||
complex_args=complex_args
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue