From 243eaa834bcf4e294634686ddb942d57ab0c2b68 Mon Sep 17 00:00:00 2001 From: webstreamr <210764791+webstreamr@users.noreply.github.com> Date: Tue, 20 May 2025 21:15:37 +0200 Subject: [PATCH] chore (fetcher): increase timeout to 15s --- src/utils/Fetcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Fetcher.ts b/src/utils/Fetcher.ts index e00f3d8..9c2368c 100644 --- a/src/utils/Fetcher.ts +++ b/src/utils/Fetcher.ts @@ -34,7 +34,7 @@ export class Fetcher { private readonly getConfig = (ctx: Context, url: URL, config?: AxiosRequestConfig): AxiosRequestConfig => { return { responseType: 'text', - timeout: 10000, + timeout: 15000, ...config, headers: { 'User-Agent': this.createUserAgentForIp(ctx.ip),