ibessonov commented on code in PR #937:
URL: https://github.com/apache/ignite-3/pull/937#discussion_r928601876
##########
modules/raft/src/test/java/org/apache/ignite/internal/raft/server/impl/RaftServerImpl.java:
##########
@@ -72,6 +73,8 @@ public class RaftServerImpl implements RaftServer {
private final BlockingQueue<CommandClosureEx<WriteCommand>> writeQueue;
+ private final AtomicLong lastAppliedIndex = new AtomicLong();
Review Comment:
After renaming it makes more sense. It's a commited index in log, not last
applied index. Confusing name lead to confusion, who would have guessed
--
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]