mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_cron: Remove difference between teal version
This previously was considered an error because the module API Teal spec did not document a return value from module:add_timer()
This commit is contained in:
parent
04c6caba50
commit
54d1ff8cfd
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ local function run_task(task : task_spec)
|
|||
end
|
||||
|
||||
local task_runner : async.runner_t<task_spec> = async.runner(run_task);
|
||||
module:add_timer(1, function() : integer
|
||||
scheduled = module:add_timer(1, function() : integer
|
||||
module:log("info", "Running periodic tasks");
|
||||
local delay = 3600;
|
||||
for host in pairs(active_hosts) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue