]> git.kaiwu.me - nginx.git/commitdiff
fix r1464: test max fails in correct peer
authorIgor Sysoev <igor@sysoev.ru>
Mon, 1 Oct 2007 14:45:31 +0000 (14:45 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Mon, 1 Oct 2007 14:45:31 +0000 (14:45 +0000)
src/http/ngx_http_upstream_round_robin.c

index 43c2a50f1a3d2306faba70718a0c4a1dcebc8d08..d2a894799ed29ce1609478b0925568350f6ac295 100644 (file)
@@ -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->max_fails == 0 || peer->fails < peer->max_fails) {
+            if (peer[i].max_fails == 0 || peer[i].fails < peer->max_fails) {
                 peer[i].current_weight += peer[i].weight;
 
             } else {