Skip to content

Commit

Permalink
added concurrency to rate limiter
Browse files Browse the repository at this point in the history
  • Loading branch information
Bossett committed Dec 31, 2024
1 parent cd76df7 commit 2482308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addn/rateLimit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { pRateLimit } from 'p-ratelimit'
const _limit = pRateLimit({
interval: undefined,
rate: undefined,
concurrency: undefined,
concurrency: 96,
maxDelay: undefined,
})

Expand Down

0 comments on commit 2482308

Please sign in to comment.