diff --git a/pkg/issuer/acme/http/http.go b/pkg/issuer/acme/http/http.go index 47d1ef1c4..fcee34983 100644 --- a/pkg/issuer/acme/http/http.go +++ b/pkg/issuer/acme/http/http.go @@ -157,6 +157,9 @@ func testReachability(ctx context.Context, url string, key string) (bool, error) // TODO(dmo): figure out if we need to add a more specific timeout for // individual checks transport := &http.Transport{ + // we're only doing 1 request, make the code around this + // simpler by disabling keepalives + DisableKeepAlives: true, TLSClientConfig: &tls.Config{ InsecureSkipVerify: true, },