From a103646402e0451a1823b1e505780852377323ec Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 2 Oct 2007 12:34:16 +0000 Subject: [PATCH] fix r1552 and r1464: test max fails in correct peer --- src/http/ngx_http_upstream_round_robin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {