File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 76
76
'multipart_chunk_size ' => (int ) env ('SINGLESTORE_BACKUP_MULTIPART_CHUNK_SIZE ' ),
77
77
78
78
'force_path_style ' => (bool ) env ('SINGLESTORE_BACKUP_FORCE_PATH_STYLE ' ),
79
+
80
+ 'compatibility_mode ' => (bool ) env ('SINGLESTORE_BACKUP_COMPATIBILITY_MODE ' ),
79
81
];
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class SinglestoreBackupCommand extends Command
14
14
*
15
15
* @var string
16
16
*/
17
- protected $ signature = 'singlestore:backup {--timeout=} {--init} {--differential} ' ;
17
+ protected $ signature = 'singlestore:backup {--timeout=} {--init} {--differential} {--with-date} {--with-time} ' ;
18
18
19
19
/**
20
20
* The console command description.
@@ -52,7 +52,10 @@ public function handle()
52
52
differential: $ this ->option ('differential ' ),
53
53
region: config ('singlestore-backup.region ' ),
54
54
multipartChunkSizeMb: config ('singlestore-backup.multipart_chunk_size ' ),
55
- s3ForcePathStyle: config ('singlestore-backup.force_path_style ' )
55
+ s3ForcePathStyle: config ('singlestore-backup.force_path_style ' ),
56
+ compatibilityMode: config ('singlestore-backup.compatibility_mode ' ),
57
+ withDate: $ this ->option ('with-date ' ),
58
+ withTime: $ this ->option ('with-time ' ),
56
59
);
57
60
58
61
try {
You can’t perform that action at this time.
0 commit comments