Skip to content

Commit 175e241

Browse files
authored
Merge pull request #77 from rajatjindal/update-redis
update redis crate to 0.25
2 parents aa1d186 + 3792e78 commit 175e241

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ tokio = { version = "1", features = ["rt", "macros", "process"] }
1919
http = "1.1"
2020
tower = "0.4"
2121
hyper = "0.14"
22-
redis = { version = "0.23", features = ["tokio-comp"] }
22+
redis = { version = "0.25", features = ["tokio-comp"] }

tests/src/integration_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ mod test {
5757
port_forward_redis(forward_port, redis_port).await?;
5858

5959
let client = redis::Client::open(format!("redis://localhost:{}", forward_port))?;
60-
let mut con = client.get_async_connection().await?;
60+
let mut con = client.get_multiplexed_async_connection().await?;
6161

6262
// curl for hello
6363
println!(

0 commit comments

Comments
 (0)