Slowing down cron for now to run every ten minutes
This commit is contained in:
parent
18a643034a
commit
eb90dcac93
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ let shouldContinue = true
|
||||||
export const startTasks = () => {
|
export const startTasks = () => {
|
||||||
try {
|
try {
|
||||||
const task = schedule(
|
const task = schedule(
|
||||||
'* 7 * * *',
|
'*/10 7 * * *',
|
||||||
async (timestamp) => {
|
async (timestamp) => {
|
||||||
asyncLocalStorage.run(
|
asyncLocalStorage.run(
|
||||||
new Logger('cron', v4(), LogLevel.DEBUG),
|
new Logger('cron', v4(), LogLevel.DEBUG),
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue