do not limit stream request named queue
This commit is contained in:
parent
9366ad1ccb
commit
64b8a55f3b
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ const STALE_REVALIDATE_AGE = 4 * 60 * 60; // 4 hours
|
|||
const STALE_ERROR_AGE = 7 * 24 * 60 * 60; // 7 days
|
||||
|
||||
const builder = new addonBuilder(dummyManifest());
|
||||
const requestQueue = createNamedQueue(200);
|
||||
const requestQueue = createNamedQueue(Infinity);
|
||||
const limiter = new Bottleneck({
|
||||
maxConcurrent: process.env.LIMIT_MAX_CONCURRENT || 40,
|
||||
highWater: process.env.LIMIT_QUEUE_SIZE || 100,
|
||||
|
|
|
|||
Loading…
Reference in a new issue