Michal Matczuk
Michal Matczuk
I'm not sure if that would solve the problem.
If java driver is similarly broken it should perhaps be fixed too?
I'd say yes and it needs to be added upstream in gocql/gocql.
It can happen when Session is closed. This is a rare case but still behaviour is not correct.
The addresses have precedence, please take a look at this code. ``` func validIpAddr(addr net.IP) bool { return addr != nil && !addr.IsUnspecified() } func (h *HostInfo) connectAddressLocked() (net.IP, string)...
This should be implemented by Observer pattern
If you are interested in this work feel free to take a lead. I'm not particularly interested in further development at the moment.
Idea: Use http.Transport with dedicated dialer using DialVia instead of ProxyURL. On error return specialized error that contains the http.Response or it's representation.
Can now be done thanks to #315. Relates to #354
Currently the http/2 proxy is not supported in http.Transport https://github.com/golang/go/issues/26479. However, it can be worked around by a custom transport that manages http2 connections. In a simplified case of a...