mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_cron: Don't run tasks if loaded inside prosodyctl
It's common for modules to depend on mod_cron, and this can lead to it loading inside prosodyctl, where we don't really want to run any cron tasks.
This commit is contained in:
parent
c7005840e6
commit
d58c6ae7ca
1 changed files with 4 additions and 0 deletions
|
@ -8,6 +8,10 @@ local cron_spread_factor = module:get_option_number("cron_spread_factor", 0);
|
|||
|
||||
local active_hosts = {}
|
||||
|
||||
if prosody.process_type == "prosodyctl" then
|
||||
return; -- Yes, it happens...
|
||||
end
|
||||
|
||||
function module.add_host(host_module)
|
||||
|
||||
local last_run_times = host_module:open_store("cron", "map");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue