mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_external_services: Also validate services added by other modules
This ensures that problems with entries added other modules, e.g. mod_turn_external, are reported on startup. However, this depends on load order and whether a `module:depends()` call comes before the `module:add_item()` call. A followup commit will do something about that.
This commit is contained in:
parent
d4c3f44ade
commit
f53ff863f0
1 changed files with 2 additions and 1 deletions
|
@ -100,7 +100,8 @@ end
|
||||||
|
|
||||||
function module.load()
|
function module.load()
|
||||||
-- Trigger errors on startup
|
-- Trigger errors on startup
|
||||||
local services = configured_services / prepare;
|
local extras = module:get_host_items("external_service");
|
||||||
|
local services = ( configured_services + extras ) / prepare;
|
||||||
if #services == 0 then
|
if #services == 0 then
|
||||||
module:log("warn", "No services configured or all had errors");
|
module:log("warn", "No services configured or all had errors");
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue