diff --git a/gunicorn/workers/base.py b/gunicorn/workers/base.py index 00c0f9db..3e61000f 100644 --- a/gunicorn/workers/base.py +++ b/gunicorn/workers/base.py @@ -7,6 +7,7 @@ from datetime import datetime import os import signal import sys +import time from random import randint @@ -149,6 +150,7 @@ class Worker(object): self.alive = False # worker_int callback self.cfg.worker_int(self) + time.sleep(0.1) sys.exit(0) def handle_abort(self, sig, frame):