diff --git a/src/Appwrite/Platform/Tasks/Backup.php b/src/Appwrite/Platform/Tasks/Backup.php index 4fd5e01a3e..e298337b99 100644 --- a/src/Appwrite/Platform/Tasks/Backup.php +++ b/src/Appwrite/Platform/Tasks/Backup.php @@ -17,7 +17,7 @@ class Backup extends Action { public const BACKUPS_PATH = '/backups'; public const BACKUP_INTERVAL_SECONDS = 60 * 60 * 4; // 4 hours; - public const COMPRESS_ALGORITHM = 'lz4'; + public const COMPRESS_ALGORITHM = 'LZ4'; // faster compression and decompression protected string $filename; protected ?DSN $dsn = null; protected ?string $database = null; @@ -25,7 +25,6 @@ class Backup extends Action protected string $xtrabackupContainerId; protected int $processors = 1; - /** * @throws Exception */