From b94f51669fca0e3eca9b47f047d637b786dccdf8 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sun, 2 Aug 2026 02:09:54 -0400 Subject: [PATCH] fix: allow slower health checks --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 5406f87..53be551 100644 --- a/src/index.ts +++ b/src/index.ts @@ -99,7 +99,7 @@ async function checkStatuses( try { const response = await fetch(item.healthUrl ?? item.url, { method: "GET", - signal: AbortSignal.timeout(3000), + signal: AbortSignal.timeout(10000), }); const status = response.status; const online = -- 2.51.2