mod_cron: Expose the One Timer via module environment

This makes it easier to reschedule or otherwise manipulate the timer
from e.g. the shell, which is handy for debugging.
This commit is contained in:
Kim Alvefur 2021-12-04 17:46:37 +01:00
parent 8bef874d8f
commit d48fa1de17

View file

@ -49,7 +49,7 @@ local function run_task(task)
end end
local task_runner = async.runner(run_task); local task_runner = async.runner(run_task);
module:add_timer(1, function() scheduled = module:add_timer(1, function()
module:log("info", "Running periodic tasks"); module:log("info", "Running periodic tasks");
local delay = 3600; local delay = 3600;
for host in pairs(active_hosts) do for host in pairs(active_hosts) do