Fix more usages of backup.intervalSecs

This commit is contained in:
Girish Ramakrishnan
2020-07-29 09:34:23 -07:00
parent 97967e60e8
commit 5db78ae359
6 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ function setup(done) {
},
function createSettings(callback) {
settings.setBackupConfig({ provider: 'filesystem', backupFolder: '/tmp', format: 'tgz', retentionPolicy: { keepWithinSecs: 2 * 24 * 60 * 60 } }, callback);
settings.setBackupConfig({ provider: 'filesystem', backupFolder: '/tmp', format: 'tgz', retentionPolicy: { keepWithinSecs: 2 * 24 * 60 * 60 }, schedulePattern: '00 00 23 * * *' }, callback);
}
], done);
}