add segfault detection to TQM

* prevents indefinite hangs when a worker segfaults
This commit is contained in:
Matt Davis
2017-05-16 17:32:31 -07:00
committed by Brian Coca
parent ba3a0e8e34
commit 569377e951

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