Vladsz83 commented on code in PR #12433:
URL: https://github.com/apache/ignite/pull/12433#discussion_r2454277551


##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java:
##########
@@ -855,7 +855,9 @@ private void processFailedMessage(UUID nodeId,
                     req.version(),
                     req.deployInfo() != null);
 
-                res.error(req.classError());
+                // Minor optimization.
+                if (req.classError() != null)
+                    res.error(req.classError());

Review Comment:
   Yes, might be. But the method would be called. That is wy I've put `// Minor 
optimization.`. We can do not unnessesary call. WDYT?



-- 
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]

Reply via email to