Skip to content

Commit

Permalink
feat(worker): print todo not so often
Browse files Browse the repository at this point in the history
  • Loading branch information
keskiju committed Jul 4, 2023
1 parent 01b1b47 commit 1b32802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/src/server.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const todo = () => {
console.log('TODO: implement worker');
setTimeout(todo, 30000);
setTimeout(todo, 5 * 60000);
};

todo();
Expand Down

0 comments on commit 1b32802

Please sign in to comment.