From 3ba5df758e05083e7b2fed8889c2187498e61a8b Mon Sep 17 00:00:00 2001 From: benoitc Date: Mon, 22 Feb 2010 23:48:53 +0100 Subject: [PATCH] only handle signals we need. fix issue spotted by @jbergstroem --- gunicorn/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/worker.py b/gunicorn/worker.py index 4a76c9f5..4c0b10d7 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), - "CHLD HUP QUIT INT TERM TTIN TTOU USR1 USR2 WINCH".split() + "QUIT INT TERM USR1".split() ) PIPE = []