From 7d700103c42f74e215ba5d6f7c0713043a20e3bb Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Mon, 11 Aug 2025 07:45:28 +0000 Subject: [PATCH] chore(fetcher): decrease default timeout back to 10s --- 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 8317f06..71c8971 100644 --- a/src/utils/Fetcher.ts +++ b/src/utils/Fetcher.ts @@ -54,7 +54,7 @@ export type CustomRequestInit = RequestInit & { export class Fetcher { private readonly MIN_CACHE_TTL = 900000; // 15m - private readonly DEFAULT_TIMEOUT = 15000; + private readonly DEFAULT_TIMEOUT = 10000; private readonly DEFAULT_QUEUE_LIMIT = 5; private readonly DEFAULT_QUEUE_TIMEOUT = 5000; private readonly DEFAULT_TIMEOUTS_COUNT_THROW = 30;