add segfault detection to TQM

* prevents indefinite hangs when a worker segfaults
pull/4420/head
Matt Davis 2017-05-16 17:32:31 -07:00 committed by Brian Coca
parent ba3a0e8e34
commit 569377e951
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ class TaskQueueManager:
defunct = False
for idx,x in enumerate(self._workers):
if hasattr(x[0], 'exitcode'):
if x[0].exitcode in [-9, -15]:
if x[0].exitcode in [-9, -11, -15]:
defunct = True
return defunct