Merge pull request #8948 from jfpucheu/PATCH_8735
Correct Proxy setting for openstack provider: issue 8735
This commit is contained in:
commit
1e85d21dc4
|
@ -83,7 +83,7 @@ func (c *Config) loadAndValidate() error {
|
|||
config.Certificates = []tls.Certificate{cert}
|
||||
config.BuildNameToCertificate()
|
||||
}
|
||||
transport := &http.Transport{TLSClientConfig: config}
|
||||
transport := &http.Transport{Proxy: http.ProxyFromEnvironment, TLSClientConfig: config}
|
||||
client.HTTPClient.Transport = transport
|
||||
|
||||
err = openstack.Authenticate(client, ao)
|
||||
|
|
Loading…
Reference in New Issue