From cd1ab56cc1e1d41dbc286d2e501e26515400b9be Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Fri, 14 Nov 2025 10:41:28 +0000 Subject: [PATCH] Config: remove outdated comment about HTTP/2 issues All the linked issues are resolved. Signed-off-by: Bryan Boreham --- config/http_config.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/config/http_config.go b/config/http_config.go index 93fff55a..bc906bc6 100644 --- a/config/http_config.go +++ b/config/http_config.go @@ -662,12 +662,6 @@ func NewRoundTripperFromConfigWithContext(ctx context.Context, cfg HTTPClientCon DialContext: dialContext, } if opts.http2Enabled && cfg.EnableHTTP2 { - // HTTP/2 support is golang had many problematic cornercases where - // dead connections would be kept and used in connection pools. - // https://github.com/golang/go/issues/32388 - // https://github.com/golang/go/issues/39337 - // https://github.com/golang/go/issues/39750 - http2t, err := http2.ConfigureTransports(rt.(*http.Transport)) if err != nil { return nil, err