https://issues.apache.org/bugzilla/show_bug.cgi?id=39785
--- Comment #4 from Graham Poulter <[email protected]> 2011-11-11 06:22:26 UTC --- >> Created an attachment (id=25086) [details] >> Prevent excessive 408 log entries when KeepAlive is on > Thanks for the observation. Fixed slightly different in r919323. r919323 is still leaving a lot of 408 errors in Apache logs when Apache is running behind an Amazon Elastic Load Balancer: see https://forums.aws.amazon.com/thread.jspa?messageID=292085񇓵 Patch of r919323 for reference: --- httpd/httpd/trunk/server/protocol.c 2010/03/05 07:30:17 919322 +++ httpd/httpd/trunk/server/protocol.c 2010/03/05 07:37:15 919323 @@ -923,7 +923,9 @@ } else if (r->status == HTTP_REQUEST_TIME_OUT) { ap_update_child_status(conn->sbh, SERVER_BUSY_LOG, r); - ap_run_log_transaction(r); + if (!r->connection->keepalives) { + ap_run_log_transaction(r); + } apr_brigade_destroy(tmp_bb); goto traceout; } I believe !r->connection->keepalives is failing to filter out load balancer connections. -- 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]
