Cyrill commented on code in PR #6850:
URL: https://github.com/apache/ignite-3/pull/6850#discussion_r2511434458
##########
modules/raft/src/main/java/org/apache/ignite/raft/jraft/core/NodeImpl.java:
##########
@@ -553,16 +559,20 @@ void nextStage() {
LOG.info("Catch up phase to change peers was successfully
finished "
+ "[node={}, from peers={} to peers={}, from learners={},
to learners={}].",
this.node.getNodeId(), oldPeers, newPeers,
oldLearners, newLearners);
- if (this.nchanges > 0) {
+ if (this.nchanges > 0 || oldSequenceToken !=
sequenceToken) {
Review Comment:
You mean oldSequenceToken> sequenceToken, right?
--
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]