Skip to content

Commit

Permalink
increase concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Nov 8, 2023
1 parent 315138a commit 3a018d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pds/src/migrate-script/migrate-all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const runScript = async () => {
let pdsCounter = 0
let completed = 0
let failed = 0
const migrateQueue = new PQueue({ concurrency: 20 })
const migrateQueue = new PQueue({ concurrency: 40 })
for (const status of todo) {
if (!status.pdsId) {
status.pdsId = pdsInfos[pdsCounter % pdsInfos.length].id
Expand Down

0 comments on commit 3a018d8

Please sign in to comment.