Skip to content

Commit

Permalink
Logging the request URI from IDP (flyteorg#188)
Browse files Browse the repository at this point in the history
Signed-off-by: Prafulla Mahindrakar <[email protected]>
  • Loading branch information
pmahindrakar-oss authored May 3, 2021
1 parent dccd6d9 commit ffe5606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flyteadmin/auth/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func GetLoginHandler(ctx context.Context, authCtx interfaces.AuthenticationConte
// the user authentication flow.
func GetCallbackHandler(ctx context.Context, authCtx interfaces.AuthenticationContext) http.HandlerFunc {
return func(writer http.ResponseWriter, request *http.Request) {
logger.Debugf(ctx, "Running callback handler...")
logger.Debugf(ctx, "Running callback handler... for RequestURI %v", request.RequestURI)
authorizationCode := request.FormValue(AuthorizationResponseCodeType)

err := VerifyCsrfCookie(ctx, request)
Expand Down

0 comments on commit ffe5606

Please sign in to comment.