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