diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-27 22:10:11 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-27 22:10:11 +0100 |
commit | 7b01925b092fa420cb1e5e2629c0b1ce854e8b77 (patch) | |
tree | 1d91938bc0684ee100a075ef13e4bdc001afd556 /plugins | |
parent | cdccf238547d8500b117335b6b2024caff190c4e (diff) | |
download | prosody-7b01925b092fa420cb1e5e2629c0b1ce854e8b77.tar.gz prosody-7b01925b092fa420cb1e5e2629c0b1ce854e8b77.zip |
mod_http_file_share: Insert pauses to avoid blocknig for long periods
Similar to the mod_mam cleanup job
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http_file_share.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua index 090a056a..477252db 100644 --- a/plugins/mod_http_file_share.lua +++ b/plugins/mod_http_file_share.lua @@ -263,6 +263,12 @@ if expiry >= 0 and not external_base_url then local async = require "util.async"; local ENOENT = require "util.pposix".ENOENT; + local function sleep(t) + local wait, done = async.waiter(); + module:add_timer(t, done) + wait(); + end + local reaper_task = async.runner(function(boundary_time) local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true})); @@ -280,9 +286,11 @@ if expiry >= 0 and not external_base_url then obsolete_files:push(get_filename(slot_id)); end + sleep(0.1); local n = 0; obsolete_files:filter(function(filename) n = n + 1; + if i % 100 == 0 then sleep(0.1); end local deleted, err, errno = os.remove(filename); if deleted or errno == ENOENT then return false; |