mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fix pool using uncached list conversion
This commit is contained in:
parent
7f95c013bf
commit
abe121a963
1 changed files with 1 additions and 1 deletions
|
|
@ -398,7 +398,7 @@ class BuildLists {
|
||||||
|
|
||||||
const { errors } = await PromisePool
|
const { errors } = await PromisePool
|
||||||
.withConcurrency( poolSize )
|
.withConcurrency( poolSize )
|
||||||
.for( this.getListArray( listOptions.name ) )
|
.for( this.getListArrayMemoized( listOptions.name ) )
|
||||||
.process(async ( listEntry, index, pool ) => {
|
.process(async ( listEntry, index, pool ) => {
|
||||||
// console.log('listEntry', listEntry)
|
// console.log('listEntry', listEntry)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue