From fc4b656c3b7de2d4dcb8eb553995497ab5968d8c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 23 Feb 2025 18:29:25 +0000 Subject: [PATCH] chore: address clippy lints --- actix-identity/README.md | 6 ++++-- actix-session/src/storage/redis_rs.rs | 4 ---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/actix-identity/README.md b/actix-identity/README.md index c01083d51..180badbe4 100644 --- a/actix-identity/README.md +++ b/actix-identity/README.md @@ -83,8 +83,10 @@ async fn login(request: HttpRequest) -> impl Responder { } #[post("/logout")] -async fn logout(user: Identity) -> impl Responder { - user.logout(); +async fn logout(user: Option) -> impl Responder { + if let Some(user) = user { + user.logout(); + } HttpResponse::Ok() } ``` diff --git a/actix-session/src/storage/redis_rs.rs b/actix-session/src/storage/redis_rs.rs index 747c3775f..dc10495cf 100644 --- a/actix-session/src/storage/redis_rs.rs +++ b/actix-session/src/storage/redis_rs.rs @@ -205,7 +205,6 @@ impl SessionStore for RedisSessionStore { let value: Option = self .execute_command(redis::cmd("GET").arg(&[&cache_key])) .await - .map_err(Into::into) .map_err(LoadError::Other)?; match value { @@ -240,7 +239,6 @@ impl SessionStore for RedisSessionStore { ), ) .await - .map_err(Into::into) .map_err(SaveError::Other)?; Ok(session_key) @@ -267,7 +265,6 @@ impl SessionStore for RedisSessionStore { &format!("{}", ttl.whole_seconds()), ])) .await - .map_err(Into::into) .map_err(UpdateError::Other)?; match v { @@ -318,7 +315,6 @@ impl SessionStore for RedisSessionStore { self.execute_command::<()>(redis::cmd("DEL").arg(&[&cache_key])) .await - .map_err(Into::into) .map_err(UpdateError::Other)?; Ok(())