Fix Clippy lints for Rust 1.85 (#9289)

This commit is contained in:
Marek 2025-02-24 15:34:19 +01:00 committed by GitHub
parent 2a184e74b1
commit 80a25c1c4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 4 deletions

View File

@ -1164,7 +1164,6 @@ where
let tip = match state_service
.oneshot(zs::Request::Tip)
.await
.map_err(Into::into)
.map_err(VerifyCheckpointError::Tip)?
{
zs::Response::Tip(tip) => tip,

View File

@ -66,7 +66,7 @@ impl<S> HttpRequestMiddleware<S> {
/// Check if the request is authenticated.
pub fn check_credentials(&self, headers: &header::HeaderMap) -> bool {
self.cookie.as_ref().map_or(true, |internal_cookie| {
self.cookie.as_ref().is_none_or(|internal_cookie| {
headers
.get(header::AUTHORIZATION)
.and_then(|auth_header| auth_header.to_str().ok())

View File

@ -935,7 +935,6 @@ impl Service<Request> for StateService {
// https://github.com/rust-lang/rust/issues/70142
.and_then(convert::identity)
.map(Response::Committed)
.map_err(Into::into)
}
.instrument(span)
.boxed()
@ -983,7 +982,6 @@ impl Service<Request> for StateService {
// https://github.com/rust-lang/rust/issues/70142
.and_then(convert::identity)
.map(Response::Committed)
.map_err(Into::into)
}
.instrument(span)
.boxed()