Extend IP validation test with message verification (#1736)

This commit is contained in:
Pavlo Tkach
2022-08-10 13:27:55 -04:00
committed by GitHub
parent 028005906a
commit 45d90e7c68
2 changed files with 14 additions and 5 deletions
@@ -220,7 +220,8 @@ public class TlsCredentials implements TransportCredentials {
super(
clientInetAddr.isPresent()
? String.format(
"Registrar IP address %s is not in stored allow list", clientInetAddr.get())
"Registrar IP address %s is not in stored allow list",
clientInetAddr.get().getHostAddress())
: "Registrar IP address is not in stored allow list");
}
}