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.
diff --git a/src/http/ngx_http_file_cache.c b/src/http/ngx_http_file_cache.c
index a0f21cf..d87f785 100644
--- a/src/http/ngx_http_file_cache.c
+++ b/src/http/ngx_http_file_cache.c
@@ -408,6 +408,7 @@
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;
}