# HG changeset patch # User Igor Sysoev # Date 1226001294 0 # Node ID 51487a60eba2add7cb0826714123fd150653fb33 # Parent e9a1cddf2aaa1e9eaf28d778f57b13c49c4132bb fix the previous commit diff --git a/src/http/modules/ngx_http_gzip_filter_module.c b/src/http/modules/ngx_http_gzip_filter_module.c --- a/src/http/modules/ngx_http_gzip_filter_module.c +++ b/src/http/modules/ngx_http_gzip_filter_module.c @@ -356,7 +356,7 @@ ngx_http_gzip_body_filter(ngx_http_reque } if (ctx->out == NULL) { - return NGX_AGAIN; + return ctx->busy ? NGX_AGAIN : NGX_OK; } if (!ctx->gzheader) {