From abe121a9631b0c1ddc1c64656fe98110bdfd9432 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 21 May 2022 13:28:18 -0500 Subject: [PATCH] Fix pool using uncached list conversion --- build-lists.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-lists.js b/build-lists.js index 40a386e..9adb793 100644 --- a/build-lists.js +++ b/build-lists.js @@ -398,7 +398,7 @@ class BuildLists { const { errors } = await PromisePool .withConcurrency( poolSize ) - .for( this.getListArray( listOptions.name ) ) + .for( this.getListArrayMemoized( listOptions.name ) ) .process(async ( listEntry, index, pool ) => { // console.log('listEntry', listEntry)