From 9bd423d56e5b6a8a5972b0a5c7a2c5b3c35ba0ac Mon Sep 17 00:00:00 2001 From: roggervalf Date: Sat, 30 Mar 2024 12:50:57 -0500 Subject: [PATCH] chore: remove console.log --- tests/test_concurrency.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_concurrency.ts b/tests/test_concurrency.ts index 268522630d..3ae4f0a641 100644 --- a/tests/test_concurrency.ts +++ b/tests/test_concurrency.ts @@ -147,7 +147,6 @@ describe('Concurrency', () => { const worker = new Worker( queueName, async job => { - console.log(job.id); if (job.attemptsStarted === 1) { await worker.rateLimit(dynamicLimit); throw Worker.RateLimitError();