Set the backup janitor back to every 30min

This commit is contained in:
Johannes Zellner
2016-10-11 10:55:00 +02:00
parent eaee3ffbc9
commit 9ab845ef8a

View File

@@ -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]