-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update redis crate to 0.25 #77
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching that get_async_connection
is being depreciated!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
@@ -57,7 +57,7 @@ mod test { | |||
port_forward_redis(forward_port, redis_port).await?; | |||
|
|||
let client = redis::Client::open(format!("redis://localhost:{}", forward_port))?; | |||
let mut con = client.get_async_connection().await?; | |||
let mut con = client.get_multiplexed_async_connection().await?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deprecated: aio::Connection is deprecated. Use client::get_multiplexed_async_connection instead.
per: https://docs.rs/redis/latest/src/redis/client.rs.html#77
@rajatjindal, it looks like the commit was not signed. Would you amend the commit and sign it? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Will merge it once the signature is amended to the commit.
Signed-off-by: Rajat Jindal <rajatjindal83@gmail.com>
f2bb019
to
3792e78
Compare
👍 signed the commit now (pushed it from a new dev box). |
this supersedes #75