Re: [jira] Commented: (MODPYTHON-55) Add a version attribute to the mod_python module.

2005-05-20 Thread Jim Gallacher
Nicolas Lehuen wrote: It has not much impact since I simply don't use configure, nor make. To build under Windows XP, I just launch the Python script in dist\setup.py.in . Note the .in extension, which seems to mean that it should have been transformed by another script. However, when having a

Re: _apache.emergency_unlock function?

2005-05-20 Thread dharana
I don't know if it's related but I'm having some troubles with the current FileSession implementation. It causes a segfault when I do this: - login creating a session and go to any page (spend enought time looking down until session expires) - f5 at the browser apache segfaults and the only way

Re: svn commit: r170920 - /httpd/httpd/trunk/Makefile.in

2005-05-20 Thread Joe Orton
On Thu, May 19, 2005 at 07:56:46PM -0700, Bill Barker wrote: Joe Orton [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Thu, May 19, 2005 at 12:38:58PM -, Jean-Frederic Clere wrote: Author: jfclere Date: Thu May 19 05:38:57 2005 New Revision: 170920 URL:

[PATCH] stop killing piped loggers

2005-05-20 Thread Joe Orton
As discussed previously; this patch stops killing piped loggers; except that prefork still kills them at shutdown and ungraceful restart since it signals the entire process group, so it's not entirely consistent. In all other cases (graceful restart with prefork; shutdown and both types of

Re: [PATCH] stop killing piped loggers

2005-05-20 Thread Jeff Trawick
On 5/20/05, Joe Orton [EMAIL PROTECTED] wrote: As discussed previously; this patch stops killing piped loggers; except that prefork still kills them at shutdown and ungraceful restart since it signals the entire process group, so it's not entirely consistent. Something I'd like to confirm: If

Re: [PATCH] stop killing piped loggers

2005-05-20 Thread Joe Orton
On Fri, May 20, 2005 at 07:50:04AM -0400, Jeff Trawick wrote: On 5/20/05, Joe Orton [EMAIL PROTECTED] wrote: As discussed previously; this patch stops killing piped loggers; except that prefork still kills them at shutdown and ungraceful restart since it signals the entire process group, so

Re: svn commit: r170730 - /httpd/httpd/trunk/modules/experimental/mod_dbd.h

2005-05-20 Thread Joe Orton
On Wed, May 18, 2005 at 09:23:21AM -, [EMAIL PROTECTED] wrote: --- httpd/httpd/trunk/modules/experimental/mod_dbd.h (original) +++ httpd/httpd/trunk/modules/experimental/mod_dbd.h Wed May 18 02:23:20 2005 @@ -1,11 +1,25 @@ -/*Copyright (c) 2004, Nick Kew. All rights reserved. -

[jira] Commented: (MODPYTHON-55) Add a version attribute to the mod_python module.

2005-05-20 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-55?page=comments#action_65861 ] Jim Gallacher commented on MODPYTHON-55: Would it be appropriate to determine the version at configure time? If so we could create a file

Re: svn commit: r170730 - /httpd/httpd/trunk/modules/experimental/mod_dbd.h

2005-05-20 Thread Bill Stoddard
Joe Orton wrote: On Wed, May 18, 2005 at 09:23:21AM -, [EMAIL PROTECTED] wrote: --- httpd/httpd/trunk/modules/experimental/mod_dbd.h (original) +++ httpd/httpd/trunk/modules/experimental/mod_dbd.h Wed May 18 02:23:20 2005 @@ -1,11 +1,25 @@ -/*Copyright (c) 2004, Nick Kew. All rights

_apache.emergency_unlock function?

2005-05-20 Thread Jim Gallacher
I'm spending some time today to work on the Session docs, and was looking at the mod_python mail archives. It seems that users quite often deadlock their sessions, and eventually exhaust the max thread/processes available. The only way to kill the deadlocked sessions is by re-starting apache.

Re: svn commit: r170730 - /httpd/httpd/trunk/modules/experimental/mod_dbd.h

2005-05-20 Thread Nick Kew
Joe Orton wrote: On Wed, May 18, 2005 at 09:23:21AM -, [EMAIL PROTECTED] wrote: --- httpd/httpd/trunk/modules/experimental/mod_dbd.h (original) +++ httpd/httpd/trunk/modules/experimental/mod_dbd.h Wed May 18 02:23:20 2005 @@ -1,11 +1,25 @@ -/*Copyright (c) 2004, Nick Kew. All

Re: _apache.emergency_unlock function?

2005-05-20 Thread Jim Gallacher
Nicolas, I agree 100% with all your comments. The emergency_unlock would really just be a last desperate attempt to save your apache server from deadlocks without resorting to a full restart. Doing a restart on a development machine is one thing, but on a production server... I hate restarts.