From f44c17e54b8cf2ba7333ccdf85cfbfd3efb3a6b0 Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Tue, 15 Aug 2017 17:41:39 -0700 Subject: [PATCH] Clarify cron run time --- src/updater/cron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/updater/cron.js b/src/updater/cron.js index ed04994..05aef88 100644 --- a/src/updater/cron.js +++ b/src/updater/cron.js @@ -5,7 +5,7 @@ const salmoncalendar = require('./salmoncalendar'); console.info('Starting periodic tasks...'); -// Run every day at 0min 30sec after the hour +// Run every hour at 30sec after the hour new CronJob('30 0 * * * *', () => { splatnet.update(); salmoncalendar.update();