Copterfly / modwsgi

Automatically exported from code.google.com/p/modwsgi
0 stars 0 forks source link

Using mod_logio module causes mod_wsgi daemon process to crash. #34

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
If the Apache mod_logio module is loaded at the same time as mod_wsgi and
daemon mode of mod_wsgi is used then the daemon process will crash on first
attempt to write response content back to Apache child process from which
the request was proxied.

If the response was returned as one complete string, this would only occur
after content has been sent and so web pages would appear to work fine,
except for being very slow. The long time to get a response is because the
crashing daemon process means that a new process has to be created for each
request, resulting in CGI like speeds.

A fix which is hoped will address this problem was committed as revision
539 on the 1.X branch.

Original issue reported on code.google.com by Graham.Dumpleton@gmail.com on 21 Sep 2007 at 12:51

GoogleCodeExporter commented 8 years ago
Fix unfortunately does work after all. Only solution for now is to disable 
mod_logio.

Original comment by Graham.Dumpleton@gmail.com on 21 Sep 2007 at 1:13

GoogleCodeExporter commented 8 years ago
Now fixed in revision 542 of branch 1.X.

Original comment by Graham.Dumpleton@gmail.com on 21 Sep 2007 at 4:20

GoogleCodeExporter commented 8 years ago
Fixed in version 1.1 of mod_wsgi.

Original comment by Graham.Dumpleton@gmail.com on 1 Oct 2007 at 3:24