Skip to content

Commit

Permalink
fix: remove unused abortSignal from createRateLimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
dylandepass committed Feb 4, 2025
1 parent 4fb721d commit a12f358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/helix-shared-process-queue/src/process-queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default async function processQueue(
: { maxConcurrent: rateLimitOptions || 8 };

const waitForToken = (limit > 0 && interval > 0)
? createRateLimiter(limit, interval, abortSignal)
? createRateLimiter(limit, interval)
: async () => {};

const running = [];
Expand Down

0 comments on commit a12f358

Please sign in to comment.