diff --git a/databases/redis/src/main.rs b/databases/redis/src/main.rs index 2fd3ac03..8b949937 100644 --- a/databases/redis/src/main.rs +++ b/databases/redis/src/main.rs @@ -15,7 +15,7 @@ async fn cache_stuff( redis: web::Data, ) -> actix_web::Result { let mut conn = redis - .get_tokio_connection_manager() + .get_connection_manager() .await .map_err(error::ErrorInternalServerError)?; @@ -38,7 +38,7 @@ async fn cache_stuff( async fn del_stuff(redis: web::Data) -> actix_web::Result { let mut conn = redis - .get_tokio_connection_manager() + .get_connection_manager() .await .map_err(error::ErrorInternalServerError)?;