diff src/http/ngx_http_upstream.c @ 893:f029e69eb010

TCP upstreams always used the first TCP upstream with the same name
author Igor Sysoev <igor@sysoev.ru>
date Mon, 11 Dec 2006 08:25:03 +0000
parents a9a7e4b1a72b
children cc4273a2597e
line wrap: on
line diff
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -2843,7 +2843,8 @@ ngx_http_upstream_add(ngx_conf_t *cf, ng
     uscfp = umcf->upstreams.elts;
 
     for (i = 0; i < umcf->upstreams.nelts; i++) {
-        if (uscfp[i]->host.len != u->host.len
+        if (uscfp[i]->port != u->portn
+            || uscfp[i]->host.len != u->host.len
             || ngx_strncasecmp(uscfp[i]->host.data, u->host.data, u->host.len)
                != 0)
         {