From 3c6fd92cc230515387f738684a49983ade4a091c Mon Sep 17 00:00:00 2001 From: thedrewen Date: Thu, 30 Oct 2025 21:16:43 +0100 Subject: [PATCH] fix(status): increase ping timeout from 3 to 10 seconds for improved reliability --- src/services/status.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/status.service.ts b/src/services/status.service.ts index f4116c4..cbf32fc 100644 --- a/src/services/status.service.ts +++ b/src/services/status.service.ts @@ -106,7 +106,7 @@ export class StatusService { const hosts = this.hosts.filter((value, index) => index < max * max_ping && index >= (max - 1) * max_ping); async function fetchAlive(host: Host) { if(host.type === 'ping'){ - let res = await ping.promise.probe(host.host, {timeout: 3}); + let res = await ping.promise.probe(host.host, {timeout: 10}); host.alive = res.alive; }else if(host.type === 'website'){ try {