From be9af03a1ea733c89bac2f81bdad5eba282ca51c Mon Sep 17 00:00:00 2001 From: yusing Date: Sun, 15 Feb 2026 17:22:10 +0800 Subject: [PATCH] fix(health): increase MaxConnsPerHost for HTTP pinger Updated the MaxConnsPerHost setting from 1 to 1000 in the HTTP pinger configuration. Fixes "no free connections available to host" error --- internal/health/check/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/health/check/http.go b/internal/health/check/http.go index 5ee11688..24f359e7 100644 --- a/internal/health/check/http.go +++ b/internal/health/check/http.go @@ -31,7 +31,7 @@ var pinger = &fasthttp.Client{ TLSConfig: &tls.Config{ InsecureSkipVerify: true, }, - MaxConnsPerHost: 1, + MaxConnsPerHost: 1000, NoDefaultUserAgentHeader: true, }