shishkovilja commented on code in PR #12780:
URL: https://github.com/apache/ignite/pull/12780#discussion_r2958588138
##########
modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/messages/TcpDiscoveryCustomEventMessage.java:
##########
@@ -102,8 +103,12 @@ public DiscoveryCustomMessage message() {
*/
// TODO: Should be removed in
https://issues.apache.org/jira/browse/IGNITE-27627
public void prepareMarshal(Marshaller marsh) throws IgniteCheckedException
{
- if (msg instanceof Message)
+ if (msg instanceof Message) {
Review Comment:
MarshallableMessage will be properly processed in MessageSerializer, this
change is unnecessary.
##########
modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/messages/TcpDiscoveryCustomEventMessage.java:
##########
@@ -122,8 +127,12 @@ public void finishUnmarhal(Marshaller marsh, ClassLoader
ldr) throws IgniteCheck
if (msg != null)
return;
- if (serMsg != null)
+ if (serMsg != null) {
Review Comment:
MarshallableMessage will be properly processed in MessageSerializer, this
change is unnecessary.
--
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]