mod_http_file_share: Recalculate total storage usage weekly instead of daily

Before mod_cron this job ran less frequently than the upload removal
job. Running them at the same frequency seems wasteful somehow, plus the
total should not drift away from the true value that fast.
This commit is contained in:
Kim Alvefur 2021-12-03 09:08:23 +01:00
parent 8aa16eaec0
commit 9950712ba3

View file

@ -538,7 +538,7 @@ end
if total_storage_limit then
local summary_start = module:measure("summary", "times");
module:daily("Global quota check", function()
module:weekly("Global quota check", function()
local summary_done = summary_start();
local iter = assert(uploads:find(nil));