rollback update interval

pull/1/head
HardiReady 2017-07-25 09:16:06 +02:00
parent b50886dda6
commit 120f413476
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ const createBackup = () => {
const cronJobSignature = cron.job('00 30 02 * * *', createAllSignatures);
// Execute daily @ 04:00 AM, on Mon, Thu and Sat
const cronJobBackup = cron.job('00 00 04 * * 0,3,5', createBackup);
const cronJobBackup = cron.job('00 00 04 * * *', createBackup);
module.exports = {
cronJobSignature: cronJobSignature,