mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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:
parent
8aa16eaec0
commit
9950712ba3
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue