You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Gets the {@code InetAddress}. * * @return the InetAddress or {@code null} if it is unresolved. */publicfinalInetAddressgetAddress() {
returnholder.getAddress();
}
This can lead to NPE during grid startup. We encounter this exception after updating Ignite from 2.16.0 to 2.17.0.
Ignite 2.17.0; Java 21.
org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi#getEffectiveNodeAddresses
doesn't check fornull
values where it should.https://github.com/apache/ignite/blob/ignite-2.17/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoverySpi.java#L1301
This can lead to NPE during grid startup. We encounter this exception after updating Ignite from 2.16.0 to 2.17.0.
The text was updated successfully, but these errors were encountered: