diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-02-20 16:48:17 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-02-20 16:48:17 +0000 |
commit | 69d73da6292364be19d8c0fa120fe16f1d260aa1 (patch) | |
tree | b8a6f1ec1bdbcf5d0705b027f1ff87ccf0359af0 /src/http/ngx_http_request.c | |
parent | c58bb90e219bbec394e69ff66334f8b99e89479d (diff) | |
download | nginx-69d73da6292364be19d8c0fa120fe16f1d260aa1.tar.gz nginx-69d73da6292364be19d8c0fa120fe16f1d260aa1.zip |
nginx-0.3.29-RELEASE importrelease-0.3.29
*) Feature: now nginx uses less memory, if PHP in FastCGI mode sends
many warnings before the response.
*) Bugfix: the "Transfer-Encoding: chunked" header line was issued in
the 204 responses for the HTTP/1.1 requests.
*) Bugfix: nginx returned the 502 response, if the complete response
header lines were transferred in a separate FastCGI records.
*) Bugfix: if the proxied URI was specified in the "post_action"
directive, then it ran only after a successful completion of a
request.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index b97515cc3..348c84bfc 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -1396,7 +1396,6 @@ ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc) || rc == NGX_HTTP_REQUEST_TIME_OUT || r->connection->error) { - if (ngx_http_post_action(r) == NGX_OK) { return; } |