[
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
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
[ 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
[
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
[ 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
>
[ 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.
> --
>
>
[ 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
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://
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