guyni
guyni
We also ran into this issue. It's very easy to reproduce. Just use https://github.com/grpc/grpc-go/tree/master/examples/helloworld/greeter_client and run nc to mock the proxy: 1. in one terminal, run "nc -l 8888"; 2....
https://github.com/grpc/grpc-go/blob/master/internal/transport/http2_client.go#L181 Shouldn't it call proxyDial(ctx, addr.ServerName, grpcUA) instead of proxyDial(ctx, address, grpcUA) here?
Hi @obno & @vikin91 I also had the same change on client/ws_proxy.go in my fork. In what case is side channel credentials used? I ran the debugger and didn't see...