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.
This commit is contained in:
WebStreamr 2025-06-04 16:18:03 +00:00
parent a9ebe9946a
commit 0d3a5b8919
No known key found for this signature in database

View file

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