You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2004/07/14 22:22:06 UTC

cvs commit: httpd-2.0/modules/proxy proxy_http.c

stoddard    2004/07/14 13:22:06

  Modified:    modules/proxy Tag: APACHE_2_0_BRANCH proxy_http.c
  Log:
  Backend ka connection going away is a normal occurance and should not be flagged as an error
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.164.2.13 +2 -2      httpd-2.0/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_http.c,v
  retrieving revision 1.164.2.12
  retrieving revision 1.164.2.13
  diff -u -r1.164.2.12 -r1.164.2.13
  --- proxy_http.c	22 Jun 2004 08:27:05 -0000	1.164.2.12
  +++ proxy_http.c	14 Jul 2004 20:22:05 -0000	1.164.2.13
  @@ -298,8 +298,8 @@
           /* 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;
           }
       }