From 28499e4c8335db059ab666db9ca3276bd8d3cf38 Mon Sep 17 00:00:00 2001 From: Andrew Thornton Date: Fri, 20 Aug 2021 20:27:43 +0100 Subject: [PATCH] Fix openidConnect source regression from #16544 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 b725cf96059cc..7c3836503ce9c 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