comparison src/http/ngx_http_upstream.c @ 535:80f7156c2965 NGINX_0_8_14

nginx 0.8.14 *) Bugfix: an expired cached response might stick in the "UPDATING" state. *) Bugfix: a segmentation fault might occur in worker process, if error_log was set to info or debug level. Thanks to Sergey Bochenkov. *) Bugfix: in embedded perl module; the bug had appeared in 0.8.11. *) Bugfix: an "error_page" directive did not redirect a 413 error; the bug had appeared in 0.6.10.
author Igor Sysoev <http://sysoev.ru>
date Mon, 07 Sep 2009 00:00:00 +0400
parents 86dad910eeb6
children 0161f3197817
comparison
equal deleted inserted replaced
534:441fbf722b8c 535:80f7156c2965
2111 } 2111 }
2112 2112
2113 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, 2113 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
2114 "http cacheable: %d", u->cacheable); 2114 "http cacheable: %d", u->cacheable);
2115 2115
2116 if (u->cacheable == 0 && r->cache) {
2117 ngx_http_file_cache_free(r, u->pipe->temp_file);
2118 }
2119
2116 #endif 2120 #endif
2117 2121
2118 p = u->pipe; 2122 p = u->pipe;
2119 2123
2120 p->output_filter = (ngx_event_pipe_output_filter_pt) ngx_http_output_filter; 2124 p->output_filter = (ngx_event_pipe_output_filter_pt) ngx_http_output_filter;