Commit 00bef883 by Ashutosh Mestry

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

parent e58c98ec
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment