chore(fetcher): decrease default timeout back to 10s

This commit is contained in:
WebStreamr 2025-08-11 07:45:28 +00:00
parent c3d86fb47f
commit 7d700103c4
No known key found for this signature in database

View file

@ -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;