Resolve some new linter errors

This commit is contained in:
Ryan Richard 2021-03-04 17:44:01 -08:00
parent d8c6894cbc
commit ec133b9743
1 changed files with 7 additions and 2 deletions

View File

@ -279,7 +279,10 @@ func TestE2EFullIntegration(t *testing.T) {
// Create an HTTP client that can reach the downstream discovery endpoint using the CA certs. // Create an HTTP client that can reach the downstream discovery endpoint using the CA certs.
httpClient := &http.Client{ httpClient := &http.Client{
Transport: &http.Transport{ Transport: &http.Transport{
TLSClientConfig: &tls.Config{RootCAs: kubeconfigCA}, TLSClientConfig: &tls.Config{
MinVersion: tls.VersionTLS12,
RootCAs: kubeconfigCA,
},
Proxy: func(req *http.Request) (*url.URL, error) { Proxy: func(req *http.Request) (*url.URL, error) {
if env.Proxy == "" { if env.Proxy == "" {
t.Logf("passing request for %s with no proxy", req.URL) t.Logf("passing request for %s with no proxy", req.URL)
@ -292,7 +295,9 @@ func TestE2EFullIntegration(t *testing.T) {
}, },
}, },
} }
resp, err := httpClient.Get(restConfig.Host) req, err := http.NewRequestWithContext(ctx, http.MethodGet, restConfig.Host, nil)
require.NoError(t, err)
resp, err := httpClient.Do(req) //nolint:bodyclose
if err != nil { if err != nil {
t.Logf("could not connect to the API server at %q: %v", restConfig.Host, err) t.Logf("could not connect to the API server at %q: %v", restConfig.Host, err)
return false return false