Skip to content

Commit

Permalink
Convert NUM_WORKERS to Number
Browse files Browse the repository at this point in the history
  • Loading branch information
willemarcel committed Apr 22, 2024
1 parent f86fd1c commit 89b3512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const process = async () => {
await storePendingReplications(f);
}));

Array(NUM_WORKERS).fill().forEach(
Array(Number(NUM_WORKERS)).fill().forEach(
async () => await processReplication()
);
};
Expand Down

0 comments on commit 89b3512

Please sign in to comment.