mod_http: Silence warnings when running under prosodyctl

This commit is contained in:
Matthew Wild 2020-09-11 12:37:07 +01:00
parent 686adb2d71
commit 29f2e5906f

View file

@ -93,7 +93,9 @@ function moduleapi.http_url(module, app_name, default_path)
return url_build(url); return url_build(url);
end end
end end
module:log("warn", "No http ports enabled, can't generate an external URL"); if prosody.process_type == "prosody" then
module:log("warn", "No http ports enabled, can't generate an external URL");
end
return "http://disabled.invalid/"; return "http://disabled.invalid/";
end end
@ -190,7 +192,7 @@ function module.add_host(module)
local services = portmanager.get_active_services(); local services = portmanager.get_active_services();
if services:get("https") or services:get("http") then if services:get("https") or services:get("http") then
module:log("info", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path)); module:log("info", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path));
else elseif prosody.process_type == "prosody" then
module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name); module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name);
end end
end end