Skip to content

Commit ebe313f

Browse files
committed
Revert back to SIGQUIT.
In the previous commit, I changed that signal from SIGQUIT to SIGINT without apparent reason. Either should work as they are meant to be used the same way for the same purpose. Still, there was no reason to change so let's revert.
1 parent 129e74e commit ebe313f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gunicorn/arbiter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def stop(self, graceful=True):
394394

395395
if not graceful or self.cfg.quick_shutdown_timeout > 0:
396396
deadline = time.time() + self.cfg.quick_shutdown_timeout
397-
self.kill_workers(signal.SIGINT)
397+
self.kill_workers(signal.SIGQUIT)
398398
self.sleep_until(deadline)
399399

400400
self.kill_workers(signal.SIGKILL)

0 commit comments

Comments
 (0)