From f55c462a79720b0ba56d94d9e28529f8c5b8c7d9 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Thu, 19 Jun 2025 19:42:45 -0600 Subject: [PATCH] fix: force bearer oauth for everything Signed-off-by: Terry Howe --- pkg/registry/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/registry/client.go b/pkg/registry/client.go index 3ea68f181..339939c6f 100644 --- a/pkg/registry/client.go +++ b/pkg/registry/client.go @@ -134,6 +134,7 @@ func NewClient(options ...ClientOption) (*Client, error) { authorizer.Cache = auth.NewCache() } + authorizer.ForceAttemptOAuth2 = true client.authorizer = &authorizer }