Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit45143b6

Browse files
committed
Make follower refuse updates that have previndex too far in the future.
1 parent112c9ec commit45143b6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

‎src/raft.c‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,12 @@ static void raft_handle_update(raft_t r, raft_msg_update_t *m) {
800800
reply.progress.entries=RAFT_LOG_LAST_INDEX(r)+1;
801801
reply.progress.bytes=e->bytes;
802802

803+
if (m->previndex>RAFT_LOG_LAST_INDEX(r))
804+
{
805+
debug("got an update with previndex=%d > lastindex=%d\n",m->previndex,RAFT_LOG_LAST_INDEX(r));
806+
gotofinish;
807+
}
808+
803809
if (reply.progress.entries>0) {
804810
reply.term=RAFT_LOG(r,reply.progress.entries-1).term;
805811
}else {
@@ -875,6 +881,7 @@ static void raft_handle_update(raft_t r, raft_msg_update_t *m) {
875881

876882
reply.success= true;
877883
finish:
884+
assert((reply.progress.entries==m->previndex+1)|| (reply.progress.bytes==0));
878885
raft_send(r,sender,&reply,sizeof(reply));
879886
}
880887

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp