From: Bill Stoddard Date: Wed, 14 Jul 2004 20:22:05 +0000 (+0000) Subject: Backend ka connection going away is a normal occurance and should not be flagged... X-Git-Tag: STRIKER_2_0_51_RC1^2~145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36879d42adb619bb85cbf504b74f508674c4e9de;p=thirdparty%2Fapache%2Fhttpd.git Backend ka connection going away is a normal occurance and should not be flagged as an error git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@104290 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index 574fb5858d4..5acfa906435 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -298,8 +298,8 @@ apr_status_t ap_proxy_http_create_connection(apr_pool_t *p, request_rec *r, /* put back old timeout */ apr_socket_timeout_set(p_conn->sock, current_timeout); if ( APR_STATUS_IS_EOF(socket_status) ) { - ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, - "proxy: HTTP: previous connection is closed"); + ap_log_error(APLOG_MARK, APLOG_INFO, 0, NULL, + "proxy: previous connection is closed, creating a new connection."); new = 1; } }