Author: adrian.chadd
Date: Sat Jan 31 22:22:32 2009
New Revision: 13761
Modified:
branches/LUSCA_HEAD/src/http.c
Log:
Quieten the "impossible keep-alive" messages, there's a lot of crappy
keep-alive implementations out there which we need to debug at a later date.
Modified: branches/LUSCA_HEAD/src/http.c
==============================================================================
--- branches/LUSCA_HEAD/src/http.c (original)
+++ branches/LUSCA_HEAD/src/http.c Sat Jan 31 22:22:32 2009
@@ -579,7 +579,7 @@
if (httpState->peer)
httpState->peer->stats.n_keepalives_recv++;
if (Config.onoff.detect_broken_server_pconns &&
httpReplyBodySize(httpState->request->method, reply) == -1) {
- debug(11, 1) ("httpProcessReplyHeader: Impossible keep-alive header
from '%s'\n", storeUrl(entry));
+ debug(11, 2) ("httpProcessReplyHeader: Impossible keep-alive header
from '%s'\n", storeUrl(entry));
debug(11, 2) ("GOT HTTP REPLY HDR:\n---------\n%.*s\n----------\n",
httpState->reply_hdr.size, httpState->reply_hdr.buf);
httpState->flags.keepalive_broken = 1;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"lusca-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/lusca-commit?hl=en
-~----------~----~----~----~------~----~------~--~---