Skip to content

Commit

Permalink
fix: use correct tracing attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
lsjostro committed Nov 6, 2024
1 parent abc3d54 commit 4e20a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authz/authz.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (s *Service) Check(ctx context.Context, req *connect.Request[auth.CheckRequ
attribute.String("cookie_name_prefix", provider.CookieNamePrefix),
attribute.String("pre_auth_policy", provider.PreAuthPolicy),
attribute.String("post_auth_policy", provider.PostAuthPolicy),
attribute.Bool("secure_cookie", provider.DisableSecureCookie),
attribute.Bool("disable_secure_cookie", provider.DisableSecureCookie),
attribute.StringSlice("scopes", provider.Scopes),
attribute.String("header_match_name", provider.HeaderMatch.Name),
),
Expand Down

0 comments on commit 4e20a89

Please sign in to comment.