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:
Matthew Wild 2025-01-07 18:06:29 +00:00
parent c7005840e6
commit d58c6ae7ca

View file

@ -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");