ATLAS-3722: ZipFileMigrationImporter: Allow AtlasPatchService to Run Before Migration Starts
This commit is contained in:
parent
e58c98ec65
commit
00bef883c5
|
|
@ -108,7 +108,8 @@ public class Services {
|
|||
|
||||
private boolean isNeededForZipFileMigration(Service svc) {
|
||||
return svc.getClass().getSuperclass().getSimpleName().equals("AbstractStorageBasedAuditRepository") ||
|
||||
svc.getClass().getSuperclass().getSimpleName().equals("AbstractNotification");
|
||||
svc.getClass().getSuperclass().getSimpleName().equals("AbstractNotification") ||
|
||||
svc.getClass().getSimpleName().equals("AtlasPatchService");
|
||||
}
|
||||
|
||||
private boolean isDataMigrationService(Service svc) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue