From 0b72c7732467fc8c561f7e6846dfaacee5068176 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sun, 27 Feb 2022 14:04:44 -0600 Subject: [PATCH] Set Concurrency to 1000 --- build-lists.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-lists.js b/build-lists.js index 25c10cb..1409dd3 100644 --- a/build-lists.js +++ b/build-lists.js @@ -194,7 +194,7 @@ class BuildLists { saveApiEndpoints = async function ( listOptions ) { await PromisePool - .withConcurrency(100) + .withConcurrency(1000) .for( Array.from( this.lists[listOptions.name] ) ) .process(async ( listEntry, index, pool ) => { // console.log('listEntry', listEntry)