From 1426d52e39683e768700e63906034990e03f66d4 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Mon, 28 Mar 2022 10:47:21 +0100 Subject: mod_turn_external: Update status and friendlier handling of missing secret option (fixes #1727) --- plugins/mod_turn_external.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/mod_turn_external.lua b/plugins/mod_turn_external.lua index fe8366be..ee50740c 100644 --- a/plugins/mod_turn_external.lua +++ b/plugins/mod_turn_external.lua @@ -8,7 +8,10 @@ local ttl = module:get_option_number("turn_external_ttl", 86400); local tcp = module:get_option_boolean("turn_external_tcp", false); local tls_port = module:get_option_number("turn_external_tls_port"); -if not secret then error("mod_" .. module.name .. " requires that 'turn_external_secret' be set") end +if not secret then + module:log_status("error", "Failed to initialize: the 'turn_external_secret' option is not set in your configuration"); + return; +end local services = set.new({ "stun-udp"; "turn-udp" }); if tcp then -- cgit v1.2.3