Skip to content

Commit

Permalink
[consensus] fix the re-broadcast condition
Browse files Browse the repository at this point in the history
  • Loading branch information
zekun000 committed Sep 1, 2023
1 parent 54e33dc commit e3e4c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/src/experimental/buffer_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ impl BufferManager {
// We'll try to re-initiate the broadcast after 30s.
Some((start_time, _)) => {
start_time.elapsed()
< Duration::from_millis(COMMIT_VOTE_REBROADCAST_INTERVAL_MS)
>= Duration::from_millis(COMMIT_VOTE_REBROADCAST_INTERVAL_MS)
},
};
if re_broadcast {
Expand Down

0 comments on commit e3e4c26

Please sign in to comment.