mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
OAuth: Rename sslcli
Rename `sslcli` to the more descriptive `oauthClient`.
This commit is contained in:
parent
ccf093da81
commit
83f1ae4e3e
@ -83,7 +83,7 @@ func OAuthLogin(ctx *middleware.Context) {
|
|||||||
InsecureSkipVerify: setting.OAuthService.OAuthInfos[name].TlsSkipVerify,
|
InsecureSkipVerify: setting.OAuthService.OAuthInfos[name].TlsSkipVerify,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
sslcli := &http.Client{
|
oauthClient := &http.Client{
|
||||||
Transport: tr,
|
Transport: tr,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ func OAuthLogin(ctx *middleware.Context) {
|
|||||||
tr.TLSClientConfig.RootCAs = caCertPool
|
tr.TLSClientConfig.RootCAs = caCertPool
|
||||||
}
|
}
|
||||||
|
|
||||||
oauthCtx := context.WithValue(context.Background(), oauth2.HTTPClient, sslcli)
|
oauthCtx := context.WithValue(context.Background(), oauth2.HTTPClient, oauthClient)
|
||||||
|
|
||||||
// get token from provider
|
// get token from provider
|
||||||
token, err := connect.Exchange(oauthCtx, code)
|
token, err := connect.Exchange(oauthCtx, code)
|
||||||
|
Loading…
Reference in New Issue
Block a user