Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
fix: skip request_json in verify
Browse files Browse the repository at this point in the history
  • Loading branch information
taco-paco committed Oct 16, 2024
1 parent a1e55b2 commit 7047213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/handlers/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub async fn verify(
})
}

#[instrument(skip(_rate_limited, engine))]
#[instrument(skip(verification_request_json, _rate_limited, engine))]
#[post("/verify-async", format = "json", data = "<verification_request_json>")]
pub fn verify_async(
verification_request_json: Json<VerificationRequest>,
Expand Down

0 comments on commit 7047213

Please sign in to comment.