Skip to content

Commit

Permalink
feat: happy now clippy?
Browse files Browse the repository at this point in the history
  • Loading branch information
ts0yu committed Feb 28, 2024
1 parent 240871d commit 9b45d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/behaviors/pool_admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl Behavior<Message> for PoolAdmin {
}

async fn process(&mut self, event: Message) -> Result<ControlFlow> {
let query: PoolAdminQuery = match serde_json::from_str(&event.data) {
let _query: PoolAdminQuery = match serde_json::from_str(&event.data) {
Ok(query) => query,
Err(_) => {
eprintln!("Failed to deserialize the event data into a PoolAdminQuery");
Expand Down

0 comments on commit 9b45d1c

Please sign in to comment.