Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Prevent log spam (#22148)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllin authored Dec 28, 2021
1 parent f8c97a3 commit f061059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/cluster_info_vote_listener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ impl ClusterInfoVoteListener {
) {
match e {
Error::CrossbeamRecvTimeout(RecvTimeoutError::Disconnected)
| Error::ReadyTimeout => (),
| Error::CrossbeamRecvTimeout(RecvTimeoutError::Timeout) => (),
_ => {
error!("thread {:?} error {:?}", thread::current().name(), e);
}
Expand Down

0 comments on commit f061059

Please sign in to comment.