Skip to content

Commit

Permalink
missing increment in AppendEntriesBatchsize
Browse files Browse the repository at this point in the history
  • Loading branch information
heidihoward committed Jan 9, 2024
1 parent feb9d68 commit ed6a9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tla/consensus/ccfraft.tla
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ CommittedTermPrefix(i, x) ==
AppendEntriesBatchsize(i, j) ==
\* The Leader is modeled to send zero to one entries per AppendEntriesRequest.
\* This can be redefined to send bigger batches of entries.
{sentIndex[i][j]}
{sentIndex[i][j] + 1}


PlausibleSucessorNodes(i) ==
Expand Down

0 comments on commit ed6a9a2

Please sign in to comment.