https://issues.apache.org/bugzilla/show_bug.cgi?id=47167
--- Comment #3 from Nick Kew <[email protected]> 2009-05-08 01:29:49 PST --- That's a very precise chronology! Just checking the change log, 2.2.6 introduced PR 43472 - breaking keep-alive in proxied HTTP backend connections. This was fixed in 2.2.8. This looks a likely candidate for your observation that 2.2.6 doesn't exhibit this bug. Can you try 2.2.11 with that fix reversed? If this fixes your bug, we can start to think about a fix for both! Please try 2.2.11 with the following patch (there may be an offset, since this is actually against svn 2.2 branch): --- modules/proxy/proxy_util.c (revision 772881 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=772881 )) +++ modules/proxy/proxy_util.c (working copy) @@ -2189,7 +2189,7 @@ else return 0; } - else if (APR_STATUS_IS_EAGAIN(status) || APR_STATUS_IS_TIMEUP(status)) { + else if (APR_STATUS_IS_EAGAIN(status)) { return 1; } return 0; -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
