From c18d05bb7f81fc057f831dad0176a2ceb0e0f267 Mon Sep 17 00:00:00 2001 From: amit Date: Fri, 19 Jan 2024 23:53:18 +0530 Subject: [PATCH] fix: add comment to trigger release --- src/auth/basic.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth/basic.rs b/src/auth/basic.rs index 0a0db0ba60..1916898c4e 100644 --- a/src/auth/basic.rs +++ b/src/auth/basic.rs @@ -12,6 +12,7 @@ pub struct BasicVerifier { } impl Verify for BasicVerifier { + /// Verify the request context against the basic auth provider. async fn verify(&self, req_ctx: &RequestContext) -> Result<(), Error> { let header = req_ctx.req_headers.typed_get::>();