Make worker timeouts more noticeable in the log.

This commit is contained in:
Paul J. Davis 2010-04-13 14:58:58 -04:00
parent dd7e8f08f8
commit af4ee69eae

View File

@ -307,7 +307,7 @@ class Arbiter(object):
except ValueError:
continue
self.log.error("Worker timed out (pid:%s)" % pid)
self.log.critical("WORKER TIMEOUT (pid:%s)" % pid)
self.kill_worker(pid, signal.SIGKILL)
def reap_workers(self):