[jira] Commented: (MODPYTHON-144) Make apache._server/apace._interpreter part of public API.

2006-03-11 Thread Graham Dumpleton (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-144?page=comments#action_12369974 ] Graham Dumpleton commented on MODPYTHON-144: Third time lucky. Understand this all a bit better now and have found a bug of sorts in mod_python as a result. r

[jira] Created: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

2006-03-11 Thread Jim Gallacher (JIRA)
Make number of mutex locks configurable at apache startup - Key: MODPYTHON-145 URL: http://issues.apache.org/jira/browse/MODPYTHON-145 Project: mod_python Type: New Feature Components: core Versions: 3.3

[jira] Work started: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

2006-03-11 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-145?page=all ] Work on MODPYTHON-145 started by Jim Gallacher > Make number of mutex locks configurable at apache startup > - > > Key: MODPYTHON-145 > URL: http://i

[jira] Commented: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

2006-03-11 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-145?page=comments#action_12369996 ] Jim Gallacher commented on MODPYTHON-145: - Use of this PythonOption to configure apache in the unit tests interferes with unit tests which are testing the PythonOp

[jira] Resolved: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

2006-03-11 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-145?page=all ] Jim Gallacher resolved MODPYTHON-145: - Fix Version: 3.3 Resolution: Fixed > Make number of mutex locks configurable at apache startup >

[jira] Resolved: (MODPYTHON-131) Make name of mutex directory configurable.

2006-03-11 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-131?page=all ] Jim Gallacher resolved MODPYTHON-131: - Fix Version: 3.3 Resolution: Fixed > Make name of mutex directory configurable. > -- > >

[jira] Assigned: (MODPYTHON-59) Add get_session() method to request object

2006-03-11 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-59?page=all ] Jim Gallacher reassigned MODPYTHON-59: -- Assign To: Jim Gallacher > Add get_session() method to request object > -- > > Key: MODPYTHON-59

Re: [jira] Assigned: (MODPYTHON-59) Add get_session() method to request object

2006-03-11 Thread Graham Dumpleton
I would rather we not go ahead with adding req.get_session() at this time. At least not how it was envisaged to be done previously. I'll come back with a bit of analysis after I review where we were up to previously. Graham On 12/03/2006, at 8:47 AM, Jim Gallacher (JIRA) wrote: [ http://

Re: [jira] Resolved: (MODPYTHON-131) Make name of mutex directory configurable.

2006-03-11 Thread Graham Dumpleton
In the area of code where changes for this was made, there is: char fname[255]; /* XXX What happens if len(mutex_dir) > 255 - len(mpmtx%d%d)? */ snprintf(fname, 255, "%s/mpmtx%d%d", mutex_dir, glb->parent_pid, n); The value 255 should really be MAXPATHLEN macro. On UNIX