Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hzlinyiyu-netease committed Jul 29, 2024
1 parent c639ee5 commit 343aacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/src/cluster/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl managed::Manager for Manager {
let ping_number = self.ping_number.fetch_add(1, Ordering::Relaxed).to_string();
let n = redis::cmd("PING")
.arg(&ping_number)
.query_async::<_, String>(conn)
.query_async::<String>(conn)
.await?;
if n == ping_number {
Ok(())
Expand Down

0 comments on commit 343aacb

Please sign in to comment.