From 3e78d33f8b9ccadeabdb295e6bfce4b7310298ec Mon Sep 17 00:00:00 2001 From: Quentin Duchemin <quentinduchemin@tuta.io> Date: Thu, 11 Jun 2020 21:54:40 +0200 Subject: [PATCH] [DBBackup] Now that Etherpad backup is non-blocking, increase frequency every 6 hours --- pica-db-backup/config/backup_config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pica-db-backup/config/backup_config.json b/pica-db-backup/config/backup_config.json index a6b37d60..4fa15ad5 100644 --- a/pica-db-backup/config/backup_config.json +++ b/pica-db-backup/config/backup_config.json @@ -18,7 +18,7 @@ "Database": "--all-databases", "Type": "mysql", "Folder": "etherpad", - "Cron": "0 1 * * *", + "Cron": "0 */6 * * *", "Options": "--single-transaction --quick --lock-tables=false", "Init-Backup": "1" }, @@ -30,7 +30,7 @@ "Database": "weekpad", "Type": "postgres", "Folder": "etherpad-week", - "Cron": "0 1 * * *", + "Cron": "0 */6 * * *", "Init-Backup": "1" }, "wekan": { @@ -39,7 +39,7 @@ "Database": "wekan", "Type": "mongo", "Folder": "wekan", - "Cron": "0 */12 * * *", + "Cron": "0 */6 * * *", "Init-Backup": "1" }, "blog": { -- GitLab