[go-nuts] Re: GKE & Issue 17066

2017-07-14 Thread thwd
Actually, our error output is slightly different than issue 17066's. 2017/07/14 10:53:31 http2: Transport failed to get client conn for :443: http2: no cached connection was available 2017/07/14 10:53:31 http2: Transport creating client conn 0xc4200016c0 to :443 2017/07/14 10:53:31 http2: Frame

[go-nuts] Re: GKE & Issue 17066

2017-07-14 Thread thwd
Seems to be Mac OS related. It works on Linux, every time over HTTP 1 and 2. On Friday, July 14, 2017 at 11:33:22 AM UTC+2, thwd wrote: > > We tried: > > if len(os.Getenv("DISABLE_HTTP2")) > 0 { > http.DefaultClient.Transport = &http.Transport{ > TLSNextProto: make(map[string]func(stri

[go-nuts] Re: GKE & Issue 17066

2017-07-14 Thread thwd
We tried: if len(os.Getenv("DISABLE_HTTP2")) > 0 { http.DefaultClient.Transport = &http.Transport{ TLSNextProto: make(map[string]func(string, *tls.Conn) http.RoundTripper), } } But the effect was the same as with GODEBUG=http2client=0, just an EOF. Will keep trying. If it is re