]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_proxy_hcheck: Fix issues with interval determination. PR 62318
authorGraham Leggett <minfrin@apache.org>
Tue, 18 Sep 2018 21:45:59 +0000 (21:45 +0000)
committerGraham Leggett <minfrin@apache.org>
Tue, 18 Sep 2018 21:45:59 +0000 (21:45 +0000)
trunk patch: http://svn.apache.org/r1838937
2.4.x patch: svn merge -c 1838937 ^/httpd/httpd/trunk .
+1: jim, ylavic, minfrin

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1841266 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/proxy/mod_proxy_hcheck.c

diff --git a/CHANGES b/CHANGES
index 51057f6caa5c4f60f16e7b2da0e00e88bd9f31ef..756ce9f4672cecb5eced3a49dc6ac427fccf141a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.4.36
 
+  *) mod_proxy_hcheck: Fix issues with interval determination. PR 62318
+     [Jim Jagielski]
+
   *) mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499
      [Dominik Stillhard <dominik.stillhard united-security-providers.ch>]
 
diff --git a/STATUS b/STATUS
index 926e6baadf742e832234a290f206747f5f8c9c8c..ad76497bbc3ebcef8a625d24ce46fbe8701029d6 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -124,11 +124,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-   *) mod_proxy_hcheck: Fix issues with interval determination. PR 62318
-      trunk patch: http://svn.apache.org/r1838937
-      2.4.x patch: svn merge -c 1838937 ^/httpd/httpd/trunk .
-      +1: jim, ylavic, minfrin
-
 
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
index bf557b71e9cbc505f292e5493c39055a4d841903..2783a58e786d156e42c27e80edd22dca098264e6 100644 (file)
@@ -830,6 +830,7 @@ static void * APR_THREAD_FUNC hc_check(apr_thread_t *thread, void *b)
                  "%sHealth checking %s", (thread ? "Threaded " : ""),
                  worker->s->name);
 
+    worker->s->updated = now;
     if (hc->s->method == TCP) {
         rv = hc_check_tcp(baton);
     }
@@ -870,7 +871,6 @@ static void * APR_THREAD_FUNC hc_check(apr_thread_t *thread, void *b)
             }
         }
     }
-    worker->s->updated = now;
     apr_pool_destroy(baton->ptemp);
     return NULL;
 }