diff --git a/xtask/src/util.rs b/xtask/src/util.rs index 47e4b48..590f4b2 100644 --- a/xtask/src/util.rs +++ b/xtask/src/util.rs @@ -11,7 +11,7 @@ use tracing::{info, log::LevelFilter}; pub async fn connect_to_cache(url: &str) -> eyre::Result { let client = redis::Client::open(url).wrap_err("invalid cache URL format")?; let cache = client - .get_tokio_connection_manager() + .get_connection_manager() .await .wrap_err("failed to connect to the cache")?;