mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
Correct logic with non-seq lbsets config'ed
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@739854 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -53,7 +53,7 @@ static proxy_worker *find_best_bybusyness(proxy_balancer *balancer,
|
||||
max_lbset = worker->s->lbset;
|
||||
}
|
||||
|
||||
if (worker->s->lbset > cur_lbset)
|
||||
if (worker->s->lbset != cur_lbset)
|
||||
continue;
|
||||
|
||||
if ( (checking_standby ? !PROXY_WORKER_IS_STANDBY(worker) : PROXY_WORKER_IS_STANDBY(worker)) )
|
||||
|
Reference in New Issue
Block a user