summaryrefslogtreecommitdiff
path: root/internal/handlers/handler_oauth_introspection.go
diff options
context:
space:
mode:
authorEdward Betts <edward@4angle.com>2023-12-11 18:52:40 +0000
committerGitHub <noreply@github.com>2023-12-12 05:52:40 +1100
commit549ea4262449ff3af509a43e10693f2493547260 (patch)
tree525e0e00e59e73eeca3c2dd4a5bbcfa755b81d9d /internal/handlers/handler_oauth_introspection.go
parentebd49aa15173faaa4a2efeac9fafdcf4e5ee2763 (diff)
refactor: correct spelling mistakes (#6395)
Co-authored-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/handlers/handler_oauth_introspection.go')
-rw-r--r--internal/handlers/handler_oauth_introspection.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/handlers/handler_oauth_introspection.go b/internal/handlers/handler_oauth_introspection.go
index fef26dace..67fa1fb83 100644
--- a/internal/handlers/handler_oauth_introspection.go
+++ b/internal/handlers/handler_oauth_introspection.go
@@ -44,7 +44,7 @@ func OAuthIntrospectionPOST(ctx *middlewares.AutheliaCtx, rw http.ResponseWriter
return
}
- ctx.Logger.Tracef("Introspection Request with id '%s' yeilded a %s (active: %t) requested at %s created with request id '%s' on client with id '%s'", requestID, responder.GetTokenUse(), responder.IsActive(), responder.GetAccessRequester().GetRequestedAt().String(), responder.GetAccessRequester().GetID(), responder.GetAccessRequester().GetClient().GetID())
+ ctx.Logger.Tracef("Introspection Request with id '%s' yielded a %s (active: %t) requested at %s created with request id '%s' on client with id '%s'", requestID, responder.GetTokenUse(), responder.IsActive(), responder.GetAccessRequester().GetRequestedAt().String(), responder.GetAccessRequester().GetID(), responder.GetAccessRequester().GetClient().GetID())
aud, introspection := oidc.IntrospectionResponseToMap(responder)