diff src/http/ngx_http_upstream.c @ 3418:a076e1823737

delete u->cleanup mark, this fixes large values in $upstream_response_time, the bug had been introduced in r3007
author Igor Sysoev <igor@sysoev.ru>
date Fri, 29 Jan 2010 16:45:14 +0000
parents 9e7926763f87
children 58865853f29b
line wrap: on
line diff
--- a/src/http/ngx_http_upstream.c	Thu Jan 28 14:17:51 2010 +0000
+++ b/src/http/ngx_http_upstream.c	Fri Jan 29 16:45:14 2010 +0000
@@ -366,6 +366,7 @@
         r->main->count++;
         ngx_http_upstream_cleanup(r);
         *u->cleanup = NULL;
+        u->cleanup = NULL;
     }
 
     u = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_t));
@@ -2856,6 +2857,7 @@
 
     if (u->cleanup) {
         *u->cleanup = NULL;
+        u->cleanup = NULL;
     }
 
     if (u->resolved && u->resolved->ctx) {