From: Yann Ylavic Date: Fri, 8 Sep 2017 14:05:38 +0000 (+0000) Subject: Merge r1802845 from trunk: X-Git-Tag: 2.4.28~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32adbe7dc9d0c9a5d1bbb17cbad12fdfbc946c01;p=apache Merge r1802845 from trunk: Make sure updatelbstatus() is NULL Submitted by: jim Reviewed by: jim, covener, ylavic git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1807763 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 852ba5f7b7..bf11b3b84f 100644 --- a/STATUS +++ b/STATUS @@ -119,11 +119,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK: 2.4.x patch: svn merge -c 1801594 ^/httpd/httpd/trunk . +1: jfclere, jim, covener - *) proxy: Ensure updatelbstatus() is NULL if not-implemented - trunk patch: http://svn.apache.org/r1802845 - 2.4.x patch: trunk patch works - +1: jim, covener, ylavic - *) mod_http2: fix for stalling when more than 32KB are written to a suspended stream 2.4.x patch: svn merge -c 1803420,1803454,1804090 ^/httpd/httpd/trunk . +1: icing, steffenal, ylavic diff --git a/modules/proxy/balancers/mod_lbmethod_bybusyness.c b/modules/proxy/balancers/mod_lbmethod_bybusyness.c index 67d53a3551..30a8f55429 100644 --- a/modules/proxy/balancers/mod_lbmethod_bybusyness.c +++ b/modules/proxy/balancers/mod_lbmethod_bybusyness.c @@ -141,7 +141,8 @@ static const proxy_balancer_method bybusyness = &find_best_bybusyness, NULL, &reset, - &age + &age, + NULL }; static void register_hook(apr_pool_t *p) diff --git a/modules/proxy/balancers/mod_lbmethod_byrequests.c b/modules/proxy/balancers/mod_lbmethod_byrequests.c index 206fe9216b..83424cefed 100644 --- a/modules/proxy/balancers/mod_lbmethod_byrequests.c +++ b/modules/proxy/balancers/mod_lbmethod_byrequests.c @@ -177,7 +177,8 @@ static const proxy_balancer_method byrequests = &find_best_byrequests, NULL, &reset, - &age + &age, + NULL }; static void register_hook(apr_pool_t *p) diff --git a/modules/proxy/balancers/mod_lbmethod_bytraffic.c b/modules/proxy/balancers/mod_lbmethod_bytraffic.c index b3fe556a55..6cf2478de5 100644 --- a/modules/proxy/balancers/mod_lbmethod_bytraffic.c +++ b/modules/proxy/balancers/mod_lbmethod_bytraffic.c @@ -146,7 +146,8 @@ static const proxy_balancer_method bytraffic = &find_best_bytraffic, NULL, &reset, - &age + &age, + NULL }; static void register_hook(apr_pool_t *p) diff --git a/modules/proxy/balancers/mod_lbmethod_heartbeat.c b/modules/proxy/balancers/mod_lbmethod_heartbeat.c index 8b52eca6a2..640bddb7f7 100644 --- a/modules/proxy/balancers/mod_lbmethod_heartbeat.c +++ b/modules/proxy/balancers/mod_lbmethod_heartbeat.c @@ -358,7 +358,8 @@ static const proxy_balancer_method heartbeat = &find_best_hb, NULL, &reset, - &age + &age, + NULL }; static int lb_hb_init(apr_pool_t *p, apr_pool_t *plog,