mirror of
https://github.com/nginx/nginx.git
synced 2025-01-06 06:03:00 -06:00
Cache size accounting fix: actual cache size on disk was less than
needed by sum of sizes of files loaded by worker processes themselves while cache loader was running. The bug has been introduced in r3900.
This commit is contained in:
parent
fbc51e4c44
commit
8b2bf08165
@ -408,6 +408,7 @@ ngx_http_file_cache_read(ngx_http_request_t *r, ngx_http_cache_t *c)
|
||||
c->node->body_start = c->body_start;
|
||||
c->node->exists = 1;
|
||||
c->node->uniq = c->uniq;
|
||||
c->node->fs_size = c->fs_size;
|
||||
|
||||
cache->sh->size += c->fs_size;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user