comparison src/http/ngx_http_upstream.c @ 628:83b58b182b76 NGINX_1_0_4

nginx 1.0.4 *) Change: now regular expressions case sensitivity in the "map" directive is given by prefixes "~" or "~*". *) Feature: now shared zones and caches use POSIX semaphores on Linux. Thanks to Denis F. Latypoff. *) Bugfix: "stalled" cache updating" alert. *) Bugfix: nginx could not be built --without-http_auth_basic_module; the bug had appeared in 1.0.3.
author Igor Sysoev <http://sysoev.ru>
date Wed, 01 Jun 2011 00:00:00 +0400
parents a7a5fa2e395b
children ad6fee8052d7
comparison
equal deleted inserted replaced
627:a63a292c61af 628:83b58b182b76
2029 r->read_event_handler = ngx_http_request_empty_handler; 2029 r->read_event_handler = ngx_http_request_empty_handler;
2030 r->write_event_handler = ngx_http_request_empty_handler; 2030 r->write_event_handler = ngx_http_request_empty_handler;
2031 c->error = 1; 2031 c->error = 1;
2032 2032
2033 } else { 2033 } else {
2034
2035 #if (NGX_HTTP_CACHE)
2036
2037 if (r->cache) {
2038 ngx_http_file_cache_free(r->cache, u->pipe->temp_file);
2039 }
2040
2041 #endif
2042
2034 ngx_http_upstream_finalize_request(r, u, rc); 2043 ngx_http_upstream_finalize_request(r, u, rc);
2035 return; 2044 return;
2036 } 2045 }
2037 } 2046 }
2038 2047