From 320e215a794e1649bfcd06beef84438738196cc7 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 14 Oct 2023 22:43:39 +0200 Subject: mod_http_file_share: Retrieve stored total in async-friendly way Does this run in a thread? --- plugins/mod_http_file_share.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua index 6df9e3c3..b00bf1f9 100644 --- a/plugins/mod_http_file_share.lua +++ b/plugins/mod_http_file_share.lua @@ -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" }); -do +module:once(function () 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()); -- cgit v1.2.3