diff options
Diffstat (limited to 'src/modules/auth')
-rw-r--r-- | src/modules/auth/cookie.rs | 2 | ||||
-rw-r--r-- | src/modules/auth/openid.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/auth/cookie.rs b/src/modules/auth/cookie.rs index 4c4d96d..c0935f7 100644 --- a/src/modules/auth/cookie.rs +++ b/src/modules/auth/cookie.rs @@ -199,7 +199,7 @@ fn apply_login_success_headers( ); r.headers_mut().append( SET_COOKIE, - HeaderValue::from_str(&format!("gnix_auth={}{}", auth, cookie_opts)).unwrap(), + HeaderValue::from_str(&format!("gnix_auth={auth}{cookie_opts}")).unwrap(), ); } diff --git a/src/modules/auth/openid.rs b/src/modules/auth/openid.rs index bad9c0c..9ea268c 100644 --- a/src/modules/auth/openid.rs +++ b/src/modules/auth/openid.rs @@ -200,7 +200,7 @@ impl Node for OpenIDAuth { ); resp.headers_mut().insert( LOCATION, - HeaderValue::from_str(&return_path).map_err(|_| ServiceError::InvalidHeader)?, + HeaderValue::from_str(return_path).map_err(|_| ServiceError::InvalidHeader)?, ); Ok(resp) } else if request.method() == Method::GET && request.uri().path() == "/favicon.ico" { @@ -318,7 +318,7 @@ async fn token_request( .map_err(|_| ServiceError::CustomStatic("token request handshake failed"))?; tokio::task::spawn(async move { if let Err(err) = conn.await { - println!("Connection failed: {:?}", err); + println!("Connection failed: {err:?}"); } }); |