mirror of https://github.com/docker/docs.git
Merge pull request #4836 from atlassian/master
Use environmental proxy when doing a ping to the remote repo
This commit is contained in:
commit
e13b4fd869
|
@ -41,7 +41,10 @@ func pingRegistryEndpoint(endpoint string) (bool, error) {
|
||||||
conn.SetDeadline(time.Now().Add(time.Duration(10) * time.Second))
|
conn.SetDeadline(time.Now().Add(time.Duration(10) * time.Second))
|
||||||
return conn, nil
|
return conn, nil
|
||||||
}
|
}
|
||||||
httpTransport := &http.Transport{Dial: httpDial}
|
httpTransport := &http.Transport{
|
||||||
|
Dial: httpDial,
|
||||||
|
Proxy: http.ProxyFromEnvironment,
|
||||||
|
}
|
||||||
client := &http.Client{Transport: httpTransport}
|
client := &http.Client{Transport: httpTransport}
|
||||||
resp, err := client.Get(endpoint + "_ping")
|
resp, err := client.Get(endpoint + "_ping")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue