File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,15 +101,15 @@ var _ TlsAwareTransport = (*TlsAwareHttpTransport)(nil)
101101
102102// TlsAwareHttpTransport is a concrete implementation of TlsAwareTransport that wraps http.Transport.
103103type TlsAwareHttpTransport struct {
104- http.Transport
104+ * http.Transport
105105}
106106
107107// NewTlsAwareHttpTransport creates a TlsAwareHttpTransport with default HTTP/2 and TLS settings.
108108func NewTlsAwareHttpTransport (cfg * ComponentsConfig ) * TlsAwareHttpTransport {
109109 tlsClientConfig , _ := rest_util .NewTlsConfig ()
110110
111111 authAwareTransport := & TlsAwareHttpTransport {
112- http.Transport {
112+ & http.Transport {
113113 TLSClientConfig : tlsClientConfig ,
114114 ForceAttemptHTTP2 : true ,
115115 MaxIdleConns : 10 ,
You can’t perform that action at this time.
0 commit comments