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


##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/raft/handlers/MinimumActiveTxTimeCommandHandler.java:
##########
@@ -77,6 +77,14 @@ protected CommandResult handleInternally(
 
         long timestamp = command.timestamp();
 
+        // We MUST bump information about last updated index+term.
+        // See a comment in TablePartitionProcessor#processCommand() for 
explanation.
+        storage.runConsistently(locker -> {
+            storage.lastApplied(commandIndex, commandTerm);

Review Comment:
   This check is already done in the beginning of the method



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