mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-19 06:40:21 -07:00
Time limit needs to be passed to async_wrapper.
This commit is contained in:
parent
a06d8859fa
commit
45c40524ef
2 changed files with 4 additions and 3 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue