mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Treat module args as strings everywhere to avoid unneccessary shlex and requoting
This commit is contained in:
@@ -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 = '*'
|
||||
|
||||
Reference in New Issue
Block a user