From: Igor Sysoev Date: Tue, 2 Oct 2007 12:34:16 +0000 (+0000) Subject: fix r1552 and r1464: test max fails in correct peer X-Git-Tag: release-0.6.14~13 X-Git-Url: http://git.kaiwu.me/%7B@url%7D?a=commitdiff_plain;h=a103646402e0451a1823b1e505780852377323ec;p=nginx.git fix r1552 and r1464: test max fails in correct peer --- diff --git a/src/http/ngx_http_upstream_round_robin.c b/src/http/ngx_http_upstream_round_robin.c index d2a894799..5caf06091 100644 --- a/src/http/ngx_http_upstream_round_robin.c +++ b/src/http/ngx_http_upstream_round_robin.c @@ -514,7 +514,7 @@ ngx_http_upstream_get_peer(ngx_http_upstream_rr_peers_t *peers) } for (i = 0; i < peers->number; i++) { - if (peer[i].max_fails == 0 || peer[i].fails < peer->max_fails) { + if (peer[i].max_fails == 0 || peer[i].fails < peer[i].max_fails) { peer[i].current_weight += peer[i].weight; } else {