mod_http_file_share: Revert 9c62ffbdf2ae

No, that wasn't running in a thread, but in a next tick timer.
This commit is contained in:
Kim Alvefur 2024-11-02 23:08:28 +01:00
parent 95dddbdea1
commit 664895700d

View file

@ -79,12 +79,12 @@ local measure_upload_cache_size = module:measure("upload_cache", "amount");
local measure_quota_cache_size = module:measure("quota_cache", "amount");
local measure_total_storage_usage = module:measure("total_storage", "amount", { unit = "bytes" });
module:on_ready(function ()
do
local total, err = persist_stats:get(nil, "total");
if not err then
total_storage_usage = tonumber(total) or 0;
end
end)
end
module:hook_global("stats-update", function ()
measure_upload_cache_size(upload_cache:count());