Fix Clippy lints for Rust 1.85 (#9289)
This commit is contained in:
parent
2a184e74b1
commit
80a25c1c4c
|
@ -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,
|
||||
|
|
|
@ -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())
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue