Revert "Log a warning when a worker was terminated due to a signal"

This reverts commit b695b497b9b8e7351808848ab9e342219601742a.
This commit is contained in:
benoitc 2021-12-17 15:16:34 +01:00
parent ff58e0c6da
commit 76f8da24cb

View File

@ -526,12 +526,6 @@ class Arbiter(object):
if exitcode == self.APP_LOAD_ERROR:
reason = "App failed to load."
raise HaltServer(reason, self.APP_LOAD_ERROR)
if os.WIFSIGNALED(status):
self.log.warning(
"Worker with pid %s was terminated due to signal %s",
wpid,
os.WTERMSIG(status)
)
worker = self.WORKERS.pop(wpid, None)
if not worker: