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
if (invalidBackupStates.contains(backupObject.getStatus())) {
139
+
logger.debug("Migration is not possible because backup {} is in {} state.", backupObject.getUuid(), backupObject.getStatus());
140
+
returnfalse;
141
+
}
142
+
143
+
if (invalidBackupCompressionStatus.contains(backupObject.getCompressionStatus())) {
144
+
logger.debug("Migration is not possible because backup {} is currently being compressed. Current compression status: {}.", backupObject.getUuid(), backupObject.getCompressionStatus());
0 commit comments