We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf01cc commit d77ac8dCopy full SHA for d77ac8d
edge-apis/http_components.go
@@ -138,10 +138,10 @@ func (a *TlsAwareHttpTransport) SetProxy(proxyFunc func(*http.Request) (*url.URL
138
139
// GetTlsClientConfig returns the TLS configuration from the underlying transport.
140
func (a *TlsAwareHttpTransport) GetTlsClientConfig() *tls.Config {
141
- return a.Transport.TLSClientConfig
+ return a.TLSClientConfig
142
}
143
144
// SetTlsClientConfig updates the TLS configuration on the underlying transport.
145
func (a *TlsAwareHttpTransport) SetTlsClientConfig(config *tls.Config) {
146
- a.Transport.TLSClientConfig = config
+ a.TLSClientConfig = config
147
0 commit comments