wernerdv commented on code in PR #12436:
URL: https://github.com/apache/ignite/pull/12436#discussion_r2468237954


##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicAbstractUpdateRequest.java:
##########
@@ -69,35 +70,41 @@ public abstract class GridDhtAtomicAbstractUpdateRequest 
extends GridCacheIdMess
     public static final int CACHE_MSG_IDX = nextIndexId();
 
     /** Future ID on primary. */
+    @Order(value = 4, method = "futureId")
     protected long futId;
 
     /** Write version. */
+    @Order(value = 5, method = "writeVersion")
     protected GridCacheVersion writeVer;
 
-    /** Write synchronization mode. */
-    protected CacheWriteSynchronizationMode syncMode;
+    /** Write synchronization mode wrapper message. */
+    @Order(value = 6, method = "writeSynchronizationModeMessage")
+    protected CacheWriteSynchronizationModeMessage syncModeMsg;
 
     /** Topology version. */
+    @Order(value = 7, method = "topologyVersion")
     protected AffinityTopologyVersion topVer;
 
     /** Task name hash. */
+    @Order(8)
     protected int taskNameHash;
 
     /** Node ID. */
-    @GridDirectTransient

Review Comment:
   You need to leave it until all the heirs of this class switch to the 
generated serializer.



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