Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
pxp9 committed Apr 15, 2024
1 parent e3d942b commit e97bfd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fang/src/asynk/async_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ impl AsyncQueue {
.build();

let task = backend
.execute_query(SqlXQuery::InsertTask, &pool, query_params)
.execute_query(SqlXQuery::InsertTask, pool, query_params)
.await?
.unwrap_task();

Expand All @@ -363,7 +363,7 @@ impl AsyncQueue {
.build();

let task = backend
.execute_query(SqlXQuery::InsertTaskIfNotExists, &pool, query_params)
.execute_query(SqlXQuery::InsertTaskIfNotExists, pool, query_params)
.await?
.unwrap_task();

Expand Down

0 comments on commit e97bfd1

Please sign in to comment.