]> granicus.if.org Git - apache/commitdiff
* Also initialize local data structures for workers of a balancer.
authorRuediger Pluem <rpluem@apache.org>
Sun, 16 Apr 2006 09:12:24 +0000 (09:12 +0000)
committerRuediger Pluem <rpluem@apache.org>
Sun, 16 Apr 2006 09:12:24 +0000 (09:12 +0000)
PR: 38227, 39267
Submitted by: James A. Robinson <jim.robinson stanford.edu>
Reviewed by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@394446 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/proxy/mod_proxy_balancer.c

diff --git a/CHANGES b/CHANGES
index c198a5c5dbd682f78959abfe6b39c2fe9122f82a..bf250875cc3f164395531d776b17a0757b69abcc 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 Changes with Apache 2.3.0
   [Remove entries to the current 2.0 and 2.2 section below, when backported]
 
+  *) mod_proxy_balancer: Initialize members of a balancer correctly.
+     PR 38227. [James A. Robinson <jim.robinson stanford.edu>]
+
   *) mod_proxy: Do not release connections from connection pool twice.
      PR 38793. [Ruediger Pluem, matthias <mk-asf gigacodes.de>]
 
index f3ec4f58b6ea1fb947fa5d471cc243827aa545b2..6ce8d5ac6b652387e9651b92d23a64f24dc57f17 100644 (file)
@@ -88,6 +88,7 @@ static int init_balancer_members(proxy_server_conf *conf, server_rec *s,
 
     for (i = 0; i < balancer->workers->nelts; i++) {
         ap_proxy_initialize_worker_share(conf, workers, s);
+        ap_proxy_initialize_worker(workers, s);
         ++workers;
     }