From d272082df07890ed168bd89631976450e3440bf0 Mon Sep 17 00:00:00 2001 From: Mike Maxim Date: Mon, 6 Apr 2026 13:57:01 -0400 Subject: [PATCH] set ForceAttemptHTTP2 on http client transport object --- go/libkb/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go/libkb/client.go b/go/libkb/client.go index 540a6692e02b..4af9c1161bb9 100644 --- a/go/libkb/client.go +++ b/go/libkb/client.go @@ -175,6 +175,7 @@ func NewClient(g *GlobalContext, config *ClientConfig, needCookie bool) (*Client IdleConnTimeout: 90 * time.Second, TLSHandshakeTimeout: 10 * time.Second, ExpectContinueTimeout: 1 * time.Second, + ForceAttemptHTTP2: true, } xprt.DialContext = func(ctx context.Context, network, addr string) (c net.Conn, err error) {