# HG changeset patch # User Matthew Wild # Date 1648460841 -3600 # Node ID 9f5d0b77e3dfb66252ad5718d4c3b3edcbd6f51f # Parent 1ee72c0013f37b9a00e6d0b3b6e6164b3f90ec95 mod_turn_external: Update status and friendlier handling of missing secret option (fixes #1727) diff -r 1ee72c0013f3 -r 9f5d0b77e3df plugins/mod_turn_external.lua --- a/plugins/mod_turn_external.lua Sun Mar 27 14:05:56 2022 +0200 +++ b/plugins/mod_turn_external.lua Mon Mar 28 10:47:21 2022 +0100 @@ -8,7 +8,10 @@ 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