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