On 12/18/2007 07:50 PM, Jeff Trawick wrote: > On Dec 18, 2007 12:06 PM, Plüm, Rüdiger, VF-Group > <[EMAIL PROTECTED]> wrote: >> >>> -----Ursprüngliche Nachricht----- >>> Von: Jeff Trawick >>> Gesendet: Dienstag, 18. Dezember 2007 17:43 >>> An: dev@httpd.apache.org >>> Betreff: Re: proxy returning apr_status_t to handler? >>> >> Argh. Without further testing: Does the following patch fixes this: >> >> Index: modules/proxy/proxy_util.c >> =================================================================== >> --- modules/proxy/proxy_util.c (revision 605247) >> +++ modules/proxy/proxy_util.c (working copy) >> @@ -1601,7 +1601,7 @@ >> #endif >> >> r = conn->r; >> - if (conn->need_flush && r) { >> + if (conn->need_flush && r && (r->eos_sent || r->bytes_sent)) { >> /* >> * We need to ensure that buckets that may have been buffered in the >> * network filters get flushed to the network. This is needed since > > Yes; bogus "200 OK" is resolved:
Thanks for testing. Fix committed in r605314. Regards Rüdiger