rpc: websocket should respect the "HTTP_PROXY" by default (#27264)

rpc: the default dialer for websocket should respect the proxy environment variables like "HTTP_PROXY"
pull/27272/head
oseau 1 year ago committed by GitHub
parent 9ca84e6b0b
commit 7369752999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      rpc/websocket.go

@ -224,6 +224,7 @@ func newClientTransportWS(endpoint string, cfg *clientConfig) (reconnectFunc, er
ReadBufferSize: wsReadBuffer,
WriteBufferSize: wsWriteBuffer,
WriteBufferPool: wsBufferPool,
Proxy: http.ProxyFromEnvironment,
}
}

Loading…
Cancel
Save