From 1c857c982efd326920ac9d377b4e597addefdafe Mon Sep 17 00:00:00 2001 From: shimon Date: Tue, 15 Aug 2023 10:36:14 +0300 Subject: [PATCH] container id fix --- src/Appwrite/Platform/Tasks/Backup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Tasks/Backup.php b/src/Appwrite/Platform/Tasks/Backup.php index 32009a8ebb..d1d066c00f 100644 --- a/src/Appwrite/Platform/Tasks/Backup.php +++ b/src/Appwrite/Platform/Tasks/Backup.php @@ -16,7 +16,7 @@ use Utopia\Validator\Text; class Backup extends Action { public const BACKUPS_PATH = '/backups'; - public const BACKUP_INTERVAL_SECONDS = 60 * 60 * 4; // 4 hours; + public const BACKUP_INTERVAL_SECONDS = 60 * 60 * 1; // 4 hours; public const COMPRESS_ALGORITHM = 'lz4'; public const CONFIG_PATH = '/etc/my.cnf'; protected ?DSN $dsn = null;