Skip to content

Commit

Permalink
fix: fix incorrect parsing of queue interval (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Mar 25, 2024
1 parent 9e2eb83 commit 4b69310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function run() {
} catch (e) {
capture(e);
} finally {
await sleep(parseInt(process.env.QUEUE_INTERVAL || '15e3'));
await sleep(parseInt(process.env.QUEUE_INTERVAL || '15000'));
await run();
}
}
Expand Down

0 comments on commit 4b69310

Please sign in to comment.