Commit cbc2688b authored by Alexander Kanevskiy's avatar Alexander Kanevskiy

Use CIDR-aware proxy resolver for SPDY RoundTripper

Fixes: #54407
parent 3ae0b84e
...@@ -110,7 +110,7 @@ func (s *SpdyRoundTripper) Dial(req *http.Request) (net.Conn, error) { ...@@ -110,7 +110,7 @@ func (s *SpdyRoundTripper) Dial(req *http.Request) (net.Conn, error) {
func (s *SpdyRoundTripper) dial(req *http.Request) (net.Conn, error) { func (s *SpdyRoundTripper) dial(req *http.Request) (net.Conn, error) {
proxier := s.proxier proxier := s.proxier
if proxier == nil { if proxier == nil {
proxier = http.ProxyFromEnvironment proxier = utilnet.NewProxierWithNoProxyCIDR(http.ProxyFromEnvironment)
} }
proxyURL, err := proxier(req) proxyURL, err := proxier(req)
if err != nil { if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment