comparison src/http/ngx_http_request.c @ 164:b922c231a392 NGINX_0_3_29

nginx 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.
author Igor Sysoev <http://sysoev.ru>
date Mon, 20 Feb 2006 00:00:00 +0300
parents 6be073125f2e
children 1b490fc19afa
comparison
equal deleted inserted replaced
163:cf311b6cf6df 164:b922c231a392
1394 1394
1395 if (rc == NGX_ERROR 1395 if (rc == NGX_ERROR
1396 || rc == NGX_HTTP_REQUEST_TIME_OUT 1396 || rc == NGX_HTTP_REQUEST_TIME_OUT
1397 || r->connection->error) 1397 || r->connection->error)
1398 { 1398 {
1399
1400 if (ngx_http_post_action(r) == NGX_OK) { 1399 if (ngx_http_post_action(r) == NGX_OK) {
1401 return; 1400 return;
1402 } 1401 }
1403 1402
1404 ngx_http_close_request(r, 0); 1403 ngx_http_close_request(r, 0);