Skip to content

Commit

Permalink
feat: bump concurrency to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
mary-ext committed May 27, 2024
1 parent 58d0c63 commit b4a927e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/pqueue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export class PromiseQueue {
#max: number;
#current = 0;

constructor({ max = 4 }: { max?: number } = {}) {
constructor({ max = 8 }: { max?: number } = {}) {
this.#max = max;
}

Expand Down

0 comments on commit b4a927e

Please sign in to comment.