chore(fetcher): increase queue limit to 30
This commit is contained in:
parent
2c9faebcdc
commit
e6aa95f875
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ export class Fetcher {
|
|||
|
||||
constructor(logger: winston.Logger, queueLimit?: number, timeout?: number) {
|
||||
this.logger = logger;
|
||||
this.queueLimit = queueLimit ?? 10;
|
||||
this.queueLimit = queueLimit ?? 30;
|
||||
this.timeout = timeout ?? 10000;
|
||||
|
||||
this.httpCache = new TTLCache();
|
||||
|
|
|
|||
Loading…
Reference in a new issue