diff --git a/internal/health/check/http.go b/internal/health/check/http.go index 24f359e7..d49c7fd2 100644 --- a/internal/health/check/http.go +++ b/internal/health/check/http.go @@ -45,7 +45,7 @@ func HTTP(url *url.URL, method, path string, timeout time.Duration) (types.Healt req.SetRequestURI(url.JoinPath(path).String()) req.Header.SetMethod(method) setCommonHeaders(req.Header.Set) - req.SetConnectionClose() + // req.SetConnectionClose() // allow connection reuse start := time.Now() respErr := pinger.DoTimeout(req, resp, timeout)