Merge pull request #4806 from willthames/async_not_multiple_of_5
Ensure async terminates when time limit is not divisible by 5
This commit is contained in:
commit
b87e0e598e
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ try:
|
||||||
debug("%s still running (%s)"%(sub_pid, remaining))
|
debug("%s still running (%s)"%(sub_pid, remaining))
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
remaining = remaining - 5
|
remaining = remaining - 5
|
||||||
if remaining == 0:
|
if remaining <= 0:
|
||||||
debug("Now killing %s"%(sub_pid))
|
debug("Now killing %s"%(sub_pid))
|
||||||
os.killpg(sub_pid, signal.SIGKILL)
|
os.killpg(sub_pid, signal.SIGKILL)
|
||||||
debug("Sent kill to group %s"%sub_pid)
|
debug("Sent kill to group %s"%sub_pid)
|
||||||
|
|
Loading…
Add table
Reference in a new issue