Skip to content

Commit

Permalink
Fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
akoshelev committed Feb 8, 2024
1 parent 8cfc2a2 commit 9ec756b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipa-core/src/net/server/handlers/query/prepare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::{
/// processing of that query.
async fn handler(
transport: Extension<Arc<HttpTransport>>,
_from: Extension<ClientIdentity>, // require that client is an authenticated helper
_: Extension<ClientIdentity>, // require that client is an authenticated helper
req: http_serde::query::prepare::Request,
) -> Result<(), PrepareQueryError> {
Arc::clone(&transport).prepare_query(req.data).await
Expand Down

0 comments on commit 9ec756b

Please sign in to comment.