Hi, Val!
The root cause is clear:
[IgniteUtils.class]
for (InetSocketAddress addr : addrs)
allInetAddrs.add(*addr.getAddress()*);
List<InetAddress> reachableInetAddrs =
U.filterReachable(allInetAddrs);
[InetSocketAddress.class]
/**
*
* Gets the {@code InetAddress}.
*
** @return the InetAdress or {@code null} if it is unresolved.
* */
public final InetAddress getAddress() {
return holder.getAddress();
}
We can get null by getAddress() contract and must check it. Place check is
not important...
Unfortunately this happens on a production and not in the test environment.
If I could repeat it, I will of course let you know.
About Jira ticket creation, you can clarify what I need to do?
Alexander
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/The-client-does-not-receive-response-after-closure-completion-tp14334p14376.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.