summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-05-18 15:39:08 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-05-18 15:39:08 +0000
commita948e1f3216cd529eefd11fb4548b3dcb16d9178 (patch)
treebc743eaafb74505dc2f0f46ed3e01ebb89971fb2
parentcb19ac4da7e8568615d2a29aa3aff06612452336 (diff)
downloadnginx-a948e1f3216cd529eefd11fb4548b3dcb16d9178.tar.gz
nginx-a948e1f3216cd529eefd11fb4548b3dcb16d9178.tar.bz2
r2296 merge:
fix r2105 (r2067 in trunk)
-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);