From 96bc233f89003072d066332ce7b0c97adb107064 Mon Sep 17 00:00:00 2001 From: Plutonium141 <62324696+Plutonium141@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:14:02 +0800 Subject: [PATCH] fix: the health check for the proxy provider sometimes do not respond (#1255) --- src/apis/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apis/index.ts b/src/apis/index.ts index 4c5cfce..b795ecc 100644 --- a/src/apis/index.ts +++ b/src/apis/index.ts @@ -171,7 +171,7 @@ export const proxyProviderHealthCheckAPI = (providerName: string) => { return request .get(`providers/proxies/${encodeURIComponent(providerName)}/healthcheck`, { - timeout: 5 * 1000, + timeout: 20 * 1000, }) .json>() }