comparison src/http/ngx_http_upstream.c @ 2926:80a314b63c56

delete useless r->cache->uses
author Igor Sysoev <igor@sysoev.ru>
date Sat, 06 Jun 2009 17:48:54 +0000
parents c7d57b539248
children 55ceaef03d34
comparison
equal deleted inserted replaced
2925:8e3e31fd00a9 2926:80a314b63c56
575 c->body_start = u->conf->buffer_size; 575 c->body_start = u->conf->buffer_size;
576 c->file_cache = u->conf->cache->data; 576 c->file_cache = u->conf->cache->data;
577 577
578 rc = ngx_http_file_cache_open(r); 578 rc = ngx_http_file_cache_open(r);
579 579
580 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 580 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
581 "http upstream cache: %i u:%ui", rc, c->uses); 581 "http upstream cache: %i", rc);
582 582
583 if (rc == NGX_OK) { 583 if (rc == NGX_OK) {
584 584
585 rc = ngx_http_upstream_cache_send(r, u); 585 rc = ngx_http_upstream_cache_send(r, u);
586 586