From 3ee23d74fde24388ba129645940ea436c5af82b0 Mon Sep 17 00:00:00 2001 From: benoitc Date: Tue, 23 Feb 2010 21:19:34 +0100 Subject: [PATCH] unblock SIGCHLD --- gunicorn/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/worker.py b/gunicorn/worker.py index 4c0b10d7..d5fe0116 100644 --- a/gunicorn/worker.py +++ b/gunicorn/worker.py @@ -22,7 +22,7 @@ class Worker(object): SIGNALS = map( lambda x: getattr(signal, "SIG%s" % x), - "QUIT INT TERM USR1".split() + "HUP QUIT INT TERM USR1 USR2 WINCH CHLD".split() ) PIPE = []