From: Jim Jagielski Date: Tue, 11 Sep 2018 15:06:50 +0000 (+0000) Subject: mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499 X-Git-Tag: 2.5.0-alpha2-ci-test-only~2345 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5133c7537387ffcd581ca6577bde5d5d60d00820;p=thirdparty%2Fapache%2Fhttpd.git mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1840582 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index d2dafc20f68..d5080a61020 100644 --- 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 ] + *) 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] diff --git a/modules/proxy/mod_proxy_hcheck.c b/modules/proxy/mod_proxy_hcheck.c index 839f6a2dcb9..2783a58e786 100644 --- a/modules/proxy/mod_proxy_hcheck.c +++ b/modules/proxy/mod_proxy_hcheck.c @@ -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() */ }