sergey-chugunov-1985 commented on code in PR #12546:
URL: https://github.com/apache/ignite/pull/12546#discussion_r2592559627
##########
modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java:
##########
@@ -2443,6 +2444,15 @@ private void
processMessageFailedNodes(TcpDiscoveryAbstractMessage msg) {
}
}
+ /** */
+ private static void enrichNodeWithAttribute(TcpDiscoveryNode node, String
attrName, Object attrVal) {
+ Map<String, Object> attrs = new HashMap<>(node.getAttributes());
Review Comment:
```suggestion
if (attrVal == null)
return;
Map<String, Object> attrs = new HashMap<>(node.getAttributes());
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]