mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Treat module args as strings everywhere to avoid unneccessary shlex and requoting
This commit is contained in:
parent
f11de2f5c9
commit
3ded27fe35
4 changed files with 16 additions and 35 deletions
|
@ -221,7 +221,7 @@ class PlayBook(object):
|
|||
while (clock >= 0):
|
||||
|
||||
# poll/loop until polling duration complete
|
||||
runner.module_args = [ "jid=%s" % jid ]
|
||||
runner.module_args = "jid=%s" % jid
|
||||
runner.module_name = 'async_status'
|
||||
runner.background = 0
|
||||
runner.pattern = '*'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue