From 9ab845ef8a2c168af3b222fd9573fa5288e2aa6f Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 11 Oct 2016 10:55:00 +0200 Subject: [PATCH] Set the backup janitor back to every 30min --- src/cron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cron.js b/src/cron.js index af98c364a..f27b932d6 100644 --- a/src/cron.js +++ b/src/cron.js @@ -109,7 +109,7 @@ function recreateJobs(unusedTimeZone, callback) { if (gCleanupBackupsJob) gCleanupBackupsJob.stop(); gCleanupBackupsJob = new CronJob({ - cronTime: '00 */1 * * * *', // every 30 minutes + cronTime: '00 */30 * * * *', // every 30 minutes onTick: janitor.cleanupBackups, start: true, timeZone: allSettings[settings.TIME_ZONE_KEY]