From 240b54dad7cd95a4d15c00273510ec736aceb71e Mon Sep 17 00:00:00 2001 From: Allan Saddi Date: Wed, 17 Feb 2010 12:10:25 -0800 Subject: Fix for FastCGI CGI-mode which was broken by timeout feature. --- flup/server/fcgi_base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/flup/server/fcgi_base.py b/flup/server/fcgi_base.py index 6b0b8a2..0d985e9 100644 --- a/flup/server/fcgi_base.py +++ b/flup/server/fcgi_base.py @@ -617,6 +617,7 @@ class CGIRequest(Request): self.stdout = StdoutWrapper(sys.stdout) # Oh, the humanity! self.stderr = sys.stderr self.data = StringIO.StringIO() + self._timeout = 0 def _end(self, appStatus=0L, protocolStatus=FCGI_REQUEST_COMPLETE): sys.exit(appStatus) -- cgit v1.2.1