# HG changeset patch # User Ruslan Ermilov # Date 1475143153 -10800 # Node ID 829468da49d636d3c1fdff3f636a67f30d478743 # Parent 29bf0dbc0a77914bc94bd001a2b17d364e8e50d9 Stream: style. Explicitly initialized peer's max_conns for upstreams created with variables similar to how it's done in http. diff --git a/src/stream/ngx_stream_upstream_round_robin.c b/src/stream/ngx_stream_upstream_round_robin.c --- a/src/stream/ngx_stream_upstream_round_robin.c +++ b/src/stream/ngx_stream_upstream_round_robin.c @@ -347,6 +347,7 @@ ngx_stream_upstream_create_round_robin_p peer[0].weight = 1; peer[0].effective_weight = 1; peer[0].current_weight = 0; + peer[0].max_conns = 0; peer[0].max_fails = 1; peer[0].fail_timeout = 10; peers->peer = peer; @@ -380,6 +381,7 @@ ngx_stream_upstream_create_round_robin_p peer[i].weight = 1; peer[i].effective_weight = 1; peer[i].current_weight = 0; + peer[i].max_conns = 0; peer[i].max_fails = 1; peer[i].fail_timeout = 10; *peerp = &peer[i];