This commit is contained in:
fogelito
2023-08-15 15:25:15 +03:00
parent fee17987b0
commit 67dc104a6d
+1 -2
View File
@@ -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
*/