Skip to content

Commit 4e9e4cb

Browse files
committed
Change updater cron not to overlap with importer's cron
1 parent 5280daa commit 4e9e4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/util/cron.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const setupCron = async () => {
3232
if (inDevelopment) {
3333
await runUpdater()
3434
} else if (UPDATER_CRON_ENABLED) {
35-
cron.schedule('45 3,15 * * *', runUpdater) // Run updater every 12 hours
35+
cron.schedule('15 3,15 * * *', runUpdater) // Run updater every 12 hours
3636
}
3737
}
3838

0 commit comments

Comments
 (0)