ATLAS-3722: ZipFileMigrationImporter: Allow AtlasPatchService to Run Before Migration Starts

This commit is contained in:
Ashutosh Mestry 2020-05-28 09:40:43 -07:00
parent e58c98ec65
commit 00bef883c5
1 changed files with 2 additions and 1 deletions

View File

@ -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) {