Skip to content

Commit

Permalink
fix: resolve clippy errors introduced recently
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannis committed Sep 29, 2023
1 parent cf21797 commit 6522e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/src/server/routes/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ pub async fn status_queries(
match request.send().await {
Ok(r) => match r.json::<Box<serde_json::value::RawValue>>().await {
Ok(r) => (StatusCode::OK, Json(r)).into_response(),
Err(e) => return bad_request_response(&e.to_string()),
Err(e) => bad_request_response(&e.to_string()),
},
Err(e) => return bad_request_response(&e.to_string()),
Err(e) => bad_request_response(&e.to_string()),
}
}

0 comments on commit 6522e96

Please sign in to comment.