Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Folkert de Vries committed Dec 7, 2023
1 parent 345e06b commit 7812b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nts-pool-ke/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ async fn pick_nts_ke_servers<'a>(
Ok(x) => return Ok(x),
Err(e) => match e {
KeyExchangeError::Io(e) if e.kind() == ErrorKind::ConnectionRefused => continue,
_ => return Err(e.into()),
_ => return Err(e),
},
}
}
Expand Down

0 comments on commit 7812b92

Please sign in to comment.