From e47f470a3848c3fca8073c19f95037c3a63fe6b8 Mon Sep 17 00:00:00 2001 From: benoitc Date: Thu, 18 Feb 2010 01:30:48 +0100 Subject: [PATCH] fix wsgi_multiprocess setting --- gunicorn/http/request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/http/request.py b/gunicorn/http/request.py index 9472a7a5..67e3d34f 100644 --- a/gunicorn/http/request.py +++ b/gunicorn/http/request.py @@ -77,7 +77,7 @@ class Request(object): # object may be simultaneously invoked by another process, and # should evaluate false otherwise. In debug mode we fall to one # worker so we comply to pylons and other paster app. - wsgi_multiprocess = (self.debug == True) + wsgi_multiprocess = (self.debug == False) # authors should be aware that REMOTE_HOST and REMOTE_ADDR # may not qualify the remote addr: