PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * mod_proxy: Set the error time if we set a worker in error mode.
- Trunk version of patch:
- http://svn.apache.org/viewvc?rev=734703&view=rev
- Backport version for 2.2.x of patch:
- Trunk version of patch works
- +1: rpluem, trawick, pgollucci
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
* We can not failover to another worker.
* Mark the worker as unusable if member of load balancer
*/
- if (balancer)
+ if (balancer) {
worker->s->status |= PROXY_WORKER_IN_ERROR;
+ worker->s->error_time = apr_time_now();
+ }
break;
}
else if (access_status == HTTP_SERVICE_UNAVAILABLE) {
*/
if (balancer) {
worker->s->status |= PROXY_WORKER_IN_ERROR;
+ worker->s->error_time = apr_time_now();
}
}
else {