From 0d3a5b89195d95ba5abaccf970daede17457e74e Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Wed, 4 Jun 2025 16:18:03 +0000 Subject: [PATCH] chore(fetcher): use queue limit of 10 again :) queuing too long results in a bad experience. and often there are other non-blocked sources too, so people can choose those. or self-host. --- 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 df0c2bd..ef0759f 100644 --- a/src/utils/Fetcher.ts +++ b/src/utils/Fetcher.ts @@ -28,7 +28,7 @@ export class Fetcher { constructor(logger: winston.Logger, queueLimit?: number, timeout?: number) { this.logger = logger; - this.queueLimit = queueLimit ?? 30; + this.queueLimit = queueLimit ?? 10; this.timeout = timeout ?? 10000; this.httpCache = new TTLCache();