diff --git a/gunicorn/arbiter.py b/gunicorn/arbiter.py index 24ec3874..7ca2f6b7 100644 --- a/gunicorn/arbiter.py +++ b/gunicorn/arbiter.py @@ -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: