Skip to content

Commit d77ac8d

Browse files
appease the linter
1 parent 1bf01cc commit d77ac8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

edge-apis/http_components.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ func (a *TlsAwareHttpTransport) SetProxy(proxyFunc func(*http.Request) (*url.URL
138138

139139
// GetTlsClientConfig returns the TLS configuration from the underlying transport.
140140
func (a *TlsAwareHttpTransport) GetTlsClientConfig() *tls.Config {
141-
return a.Transport.TLSClientConfig
141+
return a.TLSClientConfig
142142
}
143143

144144
// SetTlsClientConfig updates the TLS configuration on the underlying transport.
145145
func (a *TlsAwareHttpTransport) SetTlsClientConfig(config *tls.Config) {
146-
a.Transport.TLSClientConfig = config
146+
a.TLSClientConfig = config
147147
}

0 commit comments

Comments
 (0)