mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
add segfault detection to TQM
* prevents indefinite hangs when a worker segfaults
This commit is contained in:
parent
ba3a0e8e34
commit
569377e951
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue