From 4420fde3788888a3b4c686e55c86ee821a5ab5f7 Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Sun, 23 Mar 2025 10:10:54 +0000 Subject: [PATCH] Remove deprecated HTTP option that is now the default. --- internal/backend/http_transport.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/backend/http_transport.go b/internal/backend/http_transport.go index 5a3856e41..4e0bb6594 100644 --- a/internal/backend/http_transport.go +++ b/internal/backend/http_transport.go @@ -80,7 +80,6 @@ func Transport(opts TransportOptions) (http.RoundTripper, error) { DialContext: (&net.Dialer{ Timeout: 30 * time.Second, KeepAlive: 30 * time.Second, - DualStack: true, }).DialContext, MaxIdleConns: 100, MaxIdleConnsPerHost: 100,