From 7f856109420ddce421dab8d37e2590c9a4db4fd0 Mon Sep 17 00:00:00 2001 From: zeripath Date: Sun, 22 Aug 2021 10:17:05 +0100 Subject: [PATCH] Fix openidConnect source regression from #16544 (#16759) Unfortunately there is bug in #16544 meaning that openid connects aren't being matched properly as the capitalisation in that PR is incorrect. This PR changes the capitalisation back to what is expected. Signed-off-by: Andrew Thornton --- services/auth/source/oauth2/providers_openid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/auth/source/oauth2/providers_openid.go b/services/auth/source/oauth2/providers_openid.go index b725cf9605..7c3836503c 100644 --- a/services/auth/source/oauth2/providers_openid.go +++ b/services/auth/source/oauth2/providers_openid.go @@ -18,7 +18,7 @@ type OpenIDProvider struct { // Name provides the technical name for this provider func (o *OpenIDProvider) Name() string { - return "openidconnect" + return "openidConnect" } // DisplayName returns the friendly name for this provider