Diff

util/prosodyctl/check.lua @ 12379:6ac3c580c00d

prosodyctl: check turn: Clearer error when unable to resolve external service host
author Matthew Wild <mwild1@gmail.com>
date Sat, 05 Mar 2022 16:06:39 +0000
parent 12377:317132bca8c0
child 12380:3a702f37e87c
line wrap: on
line diff
--- 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