Allow async to not need an args file since new-style modules have args embedded
This commit is contained in:
parent
ff755da1e5
commit
708d49777d
1 changed files with 5 additions and 2 deletions
|
@ -122,8 +122,11 @@ if __name__ == '__main__':
|
|||
jid = "%s.%d" % (sys.argv[1], os.getpid())
|
||||
time_limit = sys.argv[2]
|
||||
wrapped_module = sys.argv[3]
|
||||
argsfile = sys.argv[4]
|
||||
cmd = "%s %s" % (wrapped_module, argsfile)
|
||||
if len(sys.argv) >= 5:
|
||||
argsfile = sys.argv[4]
|
||||
cmd = "%s %s" % (wrapped_module, argsfile)
|
||||
else:
|
||||
cmd = wrapped_module
|
||||
step = 5
|
||||
|
||||
# setup job output directory
|
||||
|
|
Loading…
Reference in a new issue