Re: handler($$) unreliability

2003-06-16 Thread Matthew Pressly
On Sun, Jun 15, 2003 at 02:44:02PM +0800, Philippe M. Chiasson wrote: [...] This could be related to a recently discovered bug in mp_preload_module(), see http://marc.theaimsgroup.com/?t=10553271073r=1w=2 for the original report. That is a possiblity. I am preloading Project::Control,

Re: handler($$) unreliability

2003-06-15 Thread Philippe M. Chiasson
On Sat, 2003-06-14 at 04:35, Matthew Pressly wrote: I have handler that looks like this: sub handler ($$) { my ($class, $apache) =3D @_; Apache::request($apache); $apache-status(200); # Default #. } This could be related to a recently discovered bug in

Re: handler($$) unreliability

2003-06-14 Thread Stas Bekman
Frank Maas wrote: Are you using 'lookup_uri' or another form of subrequest somewhere in your handlers? Try tracing your request and see where it goes wrong. I had similar problems and it pointed out to be an error in a subrequest. Consult the mailinglist archive if you want. --Frank I have

handler($$) unreliability

2003-06-13 Thread Matthew Pressly
I have handler that looks like this: sub handler ($$) { my ($class, $apache) =3D @_; Apache::request($apache); $apache-status(200); # Default #. } The vast majority of the time, this works fine. Every now and then, usually after the apache server has been up for a while,

RE: handler($$) unreliability

2003-06-13 Thread Frank Maas
Are you using 'lookup_uri' or another form of subrequest somewhere in your handlers? Try tracing your request and see where it goes wrong. I had similar problems and it pointed out to be an error in a subrequest. Consult the mailinglist archive if you want. --Frank I have handler that looks