Update offsets
Entry for 2.4.28 regression (r1808855 missing r1805195).
Submitted by: jim, ylavic
Reviewed/backported by: ylavic (CTR per miss in the original merge)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1812074 13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
Changes with Apache 2.4.29
+ *) mod_proxy: Fix regression for non decimal loadfactor parameter introduced
+ in 2.4.28. [Jim Jagielski]
+
*) mod_authz_dbd: fix a segmentation fault if AuthzDBDQuery is not set.
PR 61546. [Lubos Uhliarik <luhliari redhat.com>]
(merge with alterations for mmn etc.)
+1: icing, ylavic
- *) mod_proxy: Add missing commit from r1808855 (loadfactor now decimal)
- trunk patch: http://svn.apache.org/r1805195
- trunk patch: http://svn.apache.org/r1812004 (CHANGES)
- 2.4.x patch: svn merge -c 1805195,1812004 ^/httpd/httpd/trunk .
- +1: ylavic,
-
PATCHES/ISSUES THAT ARE BEING WORKED
[ New entries should be added at the START of the list ]
*/
double fval = atof(val);
ival = fval * 100.0;
- if (ival < 1 || ival > 100)
+ if (ival < 100 || ival > 10000)
return "LoadFactor must be a number between 1..100";
worker->s->lbfactor = ival;
}