Do not swallow unexpected errors when reaping

I can't imagine this wasn't what was intended here. Might be a merge
artifact but I can't trace it.

Thanks to Antti Kaihola (@akaihola) for spotting this.

Close #733
This commit is contained in:
Randall Leeds 2014-05-07 20:35:27 -07:00
parent fd22ea24ae
commit 20ed91497c

View File

@ -463,8 +463,8 @@ class Arbiter(object):
continue continue
worker.tmp.close() worker.tmp.close()
except OSError as e: except OSError as e:
if e.errno == errno.ECHILD: if e.errno != errno.ECHILD:
pass raise
def manage_workers(self): def manage_workers(self):
"""\ """\