Skip to content

Commit

Permalink
raft: fix node_id mismatch log message
Browse files Browse the repository at this point in the history
  • Loading branch information
ztlpn committed Jun 4, 2024
1 parent 0eb784c commit d4efd13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/raft/consensus.cc
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ consensus::success_reply consensus::update_follower_index(
"Received append entries response node_id doesn't match expected "
"node_id (received: {}, expected: {})",
reply.node_id.id(),
node);
physical_node);
return success_reply::no;
}

Expand Down

0 comments on commit d4efd13

Please sign in to comment.