Skip to content

Commit

Permalink
Address clippy lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Oct 24, 2023
1 parent c20266d commit cf9a0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepwell/src/endpoints/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async fn postgres_check(ctx: &ServiceContext<'_>) -> Result<()> {

async fn redis_check(ctx: &ServiceContext<'_>) -> Result<()> {
ctx.redis()
.send_packed_command(&redis::Cmd::new().arg("PING"))
.send_packed_command(redis::Cmd::new().arg("PING"))
.await?;

debug!("Successfully pinged Redis");
Expand Down

0 comments on commit cf9a0bf

Please sign in to comment.