You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: share/github-backup-utils/ghe-backup-mysql
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,14 @@ else
33
33
if is_binary_backup_feature_on;then
34
34
ghe-backup-mysql-binary
35
35
else
36
+
# if incremental backups are turned on, we can't do them with
37
+
# logical backups, so we need to tell the user and exit
38
+
is_inc=$(is_incremental_backup_feature_on)
39
+
if [ $is_inc=true ];then
40
+
log_warn "Incremental backups are configured on the target environment."
41
+
log_warn "Incremental backup is not supported with a logical MySQL backup. Please disable incremental backups with 'ghe-config mysql.backup.incremental false'"
0 commit comments