mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
95dddbdea1
commit
664895700d
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue