mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 01:22:00 +00:00
Keep reap loop going on error
This commit is contained in:
parent
01722c18c4
commit
ceaf641c1a
@ -331,7 +331,11 @@ def cleanit():
|
||||
for nn in list(syncrunners):
|
||||
if syncrunners[nn].dead:
|
||||
if nn in toreap:
|
||||
syncrunners[nn].wait()
|
||||
try:
|
||||
syncrunners[nn].wait()
|
||||
except Exception as e:
|
||||
print(repr(e))
|
||||
pass
|
||||
del syncrunners[nn]
|
||||
del toreap[nn]
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user