Re: mod_proxy_http ignores errors from ap_pass_brigade(r-output_filters)

2010-02-12 Thread Nick Kew
On 11 Feb 2010, at 19:47, Aaron Bannert wrote: IMHO this is unneeded and indicates a bug in the according filter. Filters return apr error codes and not HTTP status codes. If they wish to set a specific status code they should pass an error bucket down the chain or set r-status

Re: Working on mod_spdy, looking for contributions and feedback

2010-02-12 Thread jean-frederic clere
On 02/11/2010 07:52 PM, Bryan McQuade wrote: A small group of us have been working on mod_spdy, an open source filter module that provides support for the SPDY protocol in Apache. I note that C++ is used in the code that may be a problem for a future integration in httpd sources. Cheers

RE: mod_cache with sub_request crashing

2010-02-12 Thread Shashwat Agarwal
Summarizing, to reproduce this crash it is essential to: 1. Use a subrequest to generate contents for the URL which is configured to be cached using mod_cache. While creating subrequest it is essential to pass main request's output filters: request_rec *rr = ap_sub_req_lookup_uri(/cache,

Re: mod_fcgi segementation fault and loss of MaxProcessCount

2010-02-12 Thread Jonathan Petersson
So I just upgraded to SVN HEAD and are trying to replicate the issue but something seams funky. Just to trigger issues I've set the following: MaxProcessCount 1 DefaultMaxClassProcessCount 1 Using 2.3.4 I get: [Fri Feb 12 14:20:17 2010] [notice] mod_fcgid: too many /var/www/html/test.php

Re: Re: mod_fcgi segementation fault and loss of MaxProcessCount

2010-02-12 Thread trawick
On Feb 12, 2010 8:32am, Jonathan Petersson jonathan.peters...@binero.se wrote: So I just upgraded to SVN HEAD and are trying to replicate the issue but something seams funky. Just to trigger issues I've set the following: MaxProcessCount 1 DefaultMaxClassProcessCount 1 Using

Re: Working on mod_spdy, looking for contributions and feedback

2010-02-12 Thread Bryan McQuade
Thanks Graham, We're interested in adding multiplexing support in 2.3/2.4. In order to be compatible with existing content generators, it seems that each multiplexed request would need to run in its own thread (as opposed to an async model) since so many of the existing content generators don't

Re: Working on mod_spdy, looking for contributions and feedback

2010-02-12 Thread Bryan McQuade
Yes - we decided that we'd go the C++ route initially since we have some existing SPDY encode/decode code that's written in C++, so we can make progress on a prototype implementation quickly. Once we've got the implementation in a good state, we could work on porting it to C/Apache coding

Re: mod_fcgi segementation fault and loss of MaxProcessCount

2010-02-12 Thread Jonathan Petersson
Ah thanks, I repatched it to send it to notice again :) Sent from my iPhone On 12 feb 2010, at 15.13, traw...@gmail.com wrote: On Feb 12, 2010 8:32am, Jonathan Petersson jonathan.peters...@binero.se wrote: So I just upgraded to SVN HEAD and are trying to replicate the issue but something