PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) mod_proxy: Prevent invalid loadfactor value from being updated
- trunk patch: http://svn.apache.org/r1722137
- 2.4.x patch: trunk works
- +1: jim, covener, ylavic
-
*) mod_log_config: PR58769: backport GlobalLog directive to 2.4.x
trunk patch: http://svn.apache.org/r1599535
http://svn.apache.org/r1721685
/* Normalized load factor. Used with BalancerMember,
* it is a number between 1 and 100.
*/
- worker->s->lbfactor = atoi(val);
- if (worker->s->lbfactor < 1 || worker->s->lbfactor > 100)
+ ival = atoi(val);
+ if (ival < 1 || ival > 100)
return "LoadFactor must be a number between 1..100";
+ worker->s->lbfactor = ival;
}
else if (!strcasecmp(key, "retry")) {
/* If set it will give the retry timeout for the worker