Browse Source

Hack the code so that both existing Go versions and current Go master format it the same (#358)

Margaret Nolan 7 years ago
parent
commit
58b78aa5a1
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      internal/driver/fetch.go

+ 2
- 2
internal/driver/fetch.go View File

599
 
599
 
600
 	client := &http.Client{
600
 	client := &http.Client{
601
 		Transport: &http.Transport{
601
 		Transport: &http.Transport{
602
+			Proxy:                 http.ProxyFromEnvironment,
603
+			TLSClientConfig:       tlsConfig,
602
 			ResponseHeaderTimeout: timeout + 5*time.Second,
604
 			ResponseHeaderTimeout: timeout + 5*time.Second,
603
-			Proxy:           http.ProxyFromEnvironment,
604
-			TLSClientConfig: tlsConfig,
605
 		},
605
 		},
606
 	}
606
 	}
607
 	return client.Get(source)
607
 	return client.Get(source)