]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499
authorJim Jagielski <jim@apache.org>
Tue, 11 Sep 2018 15:06:50 +0000 (15:06 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 11 Sep 2018 15:06:50 +0000 (15:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1840582 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/proxy/mod_proxy_hcheck.c

diff --git a/CHANGES b/CHANGES
index d2dafc20f687ee135deea7f352b03486868d8bbe..d5080a610208c485b3027285c2360cb79e60f03c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.1
 
+  *) mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499
+     [Dominik Stillhard <dominik.stillhard united-security-providers.ch>]
+
   *) mod_http2: connection IO event handling reworked. Instead of reacting on 
      incoming bytes, the state machine now acts on incoming frames that are 
      affecting it. This reduces state transitions. [Stefan Eissing]
index 839f6a2dcb9d0518f9463c83d397e201bda27498..2783a58e786d156e42c27e80edd22dca098264e6 100644 (file)
@@ -612,7 +612,6 @@ static apr_status_t hc_check_tcp(baton_t *baton)
 
     status = hc_get_backend("HCTCP", &backend, hc, ctx, baton->ptemp);
     if (status == OK) {
-        backend->addr = hc->cp->addr;
         status = ap_proxy_connect_backend("HCTCP", backend, hc, ctx->s);
         /* does an unconditional ap_proxy_is_socket_connected() */
     }