aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-09-28 11:12:45 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-09-28 11:12:45 +0000
commit00e723da201a31247fbd6294cac2f635c9bc58c1 (patch)
tree0cb64422228ae5999c3a230b216b96656b982cbd /src
parent63bfeb9bd0c75f54084ff37e2896234c7a18c22d (diff)
downloadnginx-00e723da201a31247fbd6294cac2f635c9bc58c1.tar.gz
nginx-00e723da201a31247fbd6294cac2f635c9bc58c1.zip
we do not need to increase request counter in this place,
the bug had appeared in r3115
Diffstat (limited to 'src')
-rw-r--r--src/http/ngx_http_core_module.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index a671e2eed..19d088160 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -994,7 +994,6 @@ ngx_http_core_post_rewrite_phase(ngx_http_request_t *r,
"rewrite or internal redirection cycle "
"while processing \"%V\"", &r->uri);
- r->main->count++;
ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
return NGX_OK;
}