Hi
I don't understand your reply: that is what I do in client1 already...
my issue was 'disabling HTTP/2 client with DefaultTransport'.
Le mer. 19 oct. 2022 à 00:04, 'Dennis Vashchuk' via golang-nuts <
golang-nuts@googlegroups.com> a écrit :
> ```
> transport := &http.Transport{
> TLSClientConfi
```
transport := &http.Transport{
TLSClientConfig: &tls.Config{},
TLSNextProto: make(map[string]func(authority string, c *tls.Conn)
http.RoundTripper), // Disable HTTP/2
}
client := &http.Client{
Transport: transport,
}
```
On Tuesday, September 6, 2022 at 3:33:03 PM UTC+3 JeffG wrote:
> Hi,
>