Make async jid's unique per host

The jid will now also contain the PID of the async_wrapper process,
and can each unique jid from each host is tracked rather than just
relying on one global jid per task.

Fixes #5582
reviewable/pr18780/r1
James Cammarata 11 years ago
parent 177bf3eb20
commit edf6fe3431

@ -72,7 +72,7 @@ if len(sys.argv) < 3:
})
sys.exit(1)
jid = sys.argv[1]
jid = "%s.%d" % (sys.argv[1], os.getpid())
time_limit = sys.argv[2]
wrapped_module = sys.argv[3]
argsfile = sys.argv[4]

Loading…
Cancel
Save