summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-11-10 15:25:11 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-11-10 15:25:11 +0000
commitde2652c1763ecb15721c9e74a6185757edbc48d0 (patch)
treede8a2c5d739cf0a7e2440b5e961a2ecbd439d72e
parentabe378e820d16fe5fa40a5828354a4ba495b5573 (diff)
downloadnginx-de2652c1763ecb15721c9e74a6185757edbc48d0.tar.gz
fix r2067
-rw-r--r--src/http/ngx_http_postpone_filter_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_postpone_filter_module.c b/src/http/ngx_http_postpone_filter_module.c
index ca5cb9e63..1088704c9 100644
--- a/src/http/ngx_http_postpone_filter_module.c
+++ b/src/http/ngx_http_postpone_filter_module.c
@@ -216,7 +216,7 @@ ngx_http_postpone_filter_output_postponed_request(ngx_http_request_t *r)
r->postponed = r->postponed->next;
}
- if (r->out) {
+ if (r != r->main && r->out) {
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"http postpone filter out again \"%V?%V\"",
&r->uri, &r->args);