rpuch commented on code in PR #7244:
URL: https://github.com/apache/ignite-3/pull/7244#discussion_r2631277783


##########
modules/core/src/main/java/org/apache/ignite/internal/util/SafeTimeValuesTracker.java:
##########
@@ -60,17 +60,20 @@ public void update(HybridTimestamp safeTs, long 
commandIndex, long commandTerm,
             if (comparator.compare(newEntry, current) < 0) {
                 throw new IgniteInternalException(INTERNAL_ERR,
                         "Reordering detected: [old=" + current.getKey() + ", 
new=" + newEntry.get1()
-                                + ", index=" + this.commandIndex
-                                + ", term=" + this.commandTerm
-                                + ", cmdCls=" + this.cmdCls
+                                + ", oldIndex=" + this.commandIndex
+                                + ", oldTerm=" + this.commandTerm
+                                + ", oldCommandClassName=" + 
this.commandClassName
+                                + ", newIndex=" + this.commandIndex
+                                + ", newTerm=" + this.commandTerm

Review Comment:
   ```suggestion
                                   + ", newIndex=" + commandIndex
                                   + ", newTerm=" + commandTerm
   ```



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