1
0
Fork 0
forked from forgejo/forgejo

Revert "[TESTS] oauth2: make it possible to use an alternate http.Client"

This reverts commit 172fdd0d32.

This code was introduced for a test case that is no longer in use. It
should guard against the provider being null but that's not worth the
effort for deadcode. Just remove it.

Refs: https://codeberg.org/forgejo/forgejo/issues/1984
This commit is contained in:
Earl Warren 2023-12-19 14:58:50 +01:00
parent 9515a0ea38
commit cfaa6dc2ed
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
3 changed files with 7 additions and 30 deletions

View file

@ -43,7 +43,6 @@ func (o *OpenIDProvider) CreateGothProvider(providerName, callbackURL string, so
if err != nil {
log.Warn("Failed to create OpenID Connect Provider with name '%s' with url '%s': %v", providerName, source.OpenIDConnectAutoDiscoveryURL, err)
}
provider.HTTPClient = HTTPClient
return provider, err
}