Skip to content

Commit

Permalink
fix(Cron): Set Hourly cron again
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Jan 19, 2019
1 parent b094a1a commit 78b706c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function exporter () {

/* eslint no-new: "off" */
// TODO move to config
new CronJob('0 * * * * *', () => {
new CronJob('0 0 * * * *', () => {
log.info(`Triggering check`);
triggerUpdate();
}, null, true, 'UTC');
Expand Down

0 comments on commit 78b706c

Please sign in to comment.