mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Time limit needs to be passed to async_wrapper.
This commit is contained in:
@@ -32,13 +32,14 @@ import traceback
|
||||
if len(sys.argv) < 3:
|
||||
print json.dumps({
|
||||
"failed" : True,
|
||||
"msg" : "usage: async_wrapper <jid> <module_script> <args>. Humans, do not call directly!"
|
||||
"msg" : "usage: async_wrapper <jid> <module_script> <time_limit> <args>. Humans, do not call directly!"
|
||||
})
|
||||
sys.exit(1)
|
||||
|
||||
jid = sys.argv[1]
|
||||
wrapped_module = sys.argv[2]
|
||||
args = sys.argv[3:]
|
||||
time_limit = sys.argv[3]
|
||||
args = sys.argv[4:]
|
||||
|
||||
cmd = "%s %s" % (wrapped_module, " ".join(args))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user