Browse Source

OAuth: Rename sslcli

Rename `sslcli` to the more descriptive `oauthClient`.
Matt Bostock 8 years ago
parent
commit
83f1ae4e3e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pkg/api/login_oauth.go

+ 2 - 2
pkg/api/login_oauth.go

@@ -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)