Skip to content

Commit

Permalink
revert to 16 concurrent jobs (#2610)
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanierh authored Nov 21, 2023
1 parent 4b17b68 commit 318962b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connectors/src/connectors/notion/lib/parents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export async function updateAllParentsFields(
// Update everybody's parents field. Use of a memoization key to control
// sharing memoization across updateAllParentsFields calls, which
// can be desired or not depending on the use case
const q = new PQueue({ concurrency: 4 });
const q = new PQueue({ concurrency: 16 });
const promises: Promise<void>[] = [];
for (const pageId of pageIdsToUpdate) {
promises.push(
Expand Down

0 comments on commit 318962b

Please sign in to comment.