mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosodyctl: check: include TURN checks by default
This commit is contained in:
parent
5af6db124a
commit
0babcb6c06
1 changed files with 2 additions and 2 deletions
|
@ -1204,7 +1204,7 @@ local function check(arg)
|
|||
print("Note: It does not ensure that the check actually reaches this specific prosody instance.")
|
||||
end
|
||||
|
||||
if what == "turn" then
|
||||
if not what or what == "turn" then
|
||||
local turn_enabled_hosts = {};
|
||||
local turn_services = {};
|
||||
|
||||
|
@ -1246,7 +1246,7 @@ local function check(arg)
|
|||
end
|
||||
|
||||
for turn_id, turn_service in pairs(turn_services) do
|
||||
print("Testing "..turn_id.."...");
|
||||
print("Testing TURN service "..turn_id.."...");
|
||||
|
||||
local result = check_turn_service(turn_service, opts.ping);
|
||||
if #result.warnings > 0 then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue