You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
• If RPC request or response contains term T > currentTerm:
set currentTerm = T, convert to follower (§5.1)
This is not implemented in all of the akka-raft states for all messages. It does seem to be implemented for AppendEntries (Follower, Leader, Candidate) but there are still three remaining issues:
It is not implemented for other message types.
Upon receiving AppendEntries from a higher term in Candidate state, the actor does convert to Follower state, but it does not update its Term
Upen receiving AppendEntries from a higher term in Leader state, the actor does convert to Follower state, but it does not update its Term
The text was updated successfully, but these errors were encountered:
From the raft paper:
• If RPC request or response contains term T > currentTerm:
set currentTerm = T, convert to follower (§5.1)
This is not implemented in all of the akka-raft states for all messages. It does seem to be implemented for AppendEntries (Follower, Leader, Candidate) but there are still three remaining issues:
The text was updated successfully, but these errors were encountered: