# HG changeset patch # User Kim Alvefur # Date 1730585308 -3600 # Node ID 7f05254fb0423a13c17a0cff2b3c89b5c33a1232 # Parent 0aae6de9d3237558cf8670f6b51226fb30f94023 mod_http_file_share: Revert 9c62ffbdf2ae No, that wasn't running in a thread, but in a next tick timer. diff -r 0aae6de9d323 -r 7f05254fb042 plugins/mod_http_file_share.lua --- a/plugins/mod_http_file_share.lua Sat Nov 02 22:33:38 2024 +0100 +++ b/plugins/mod_http_file_share.lua Sat Nov 02 23:08:28 2024 +0100 @@ -79,12 +79,12 @@ 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());