prosodyctl: check turn: Clearer error when unable to resolve external service host
authorMatthew Wild <mwild1@gmail.com>
Sat, 05 Mar 2022 16:06:39 +0000
changeset 12383 6ac3c580c00d
parent 12382 61d221efe186
child 12384 3a702f37e87c
prosodyctl: check turn: Clearer error when unable to resolve external service host
util/prosodyctl/check.lua
--- a/util/prosodyctl/check.lua	Sat Mar 05 14:46:57 2022 +0000
+++ b/util/prosodyctl/check.lua	Sat Mar 05 16:06:39 2022 +0000
@@ -178,7 +178,7 @@
 	end
 	local ping_service_ip, err = socket.dns.toip(ping_host);
 	if not ping_service_ip then
-		result.error = "Unable to resolve external service: "..err;
+		result.error = "Unable to resolve ping service hostname: "..err;
 		return result;
 	end