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
Raft leader should set appropriate previous values (prevLogIndex and prevLogTerm) to batched AppendEntries. The expected AppendEntries is the following:
The text was updated successfully, but these errors were encountered:
xirc
changed the title
Raft leader should set appropriate previous values (prevLogIndex and prevLogTerm) to batched AppendEntries
Raft leader uses the same previous LogEntryIndex and Term to all batched AppendEntries message
Jan 18, 2022
Leader
uses the same previous values (prevLogIndex
andprevLogTerm
) to all batchedAppendEntries
messages.akka-entity-replication/src/main/scala/lerna/akka/entityreplication/raft/Leader.scala
Lines 217 to 256 in 8692aa9
Expected
Raft leader should set appropriate previous values (
![upload_4544b9b53e981046efa99e0a25179257](https://user-images.githubusercontent.com/5388508/149884451-1dfa569b-14a9-43b2-be32-d814291dc1fc.png)
prevLogIndex
andprevLogTerm
) to batchedAppendEntries
. The expectedAppendEntries
is the following:The text was updated successfully, but these errors were encountered: