mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-05 15:13:07 +00:00
FIX - try-catch test suite migrations (#16160)
* FIX - try-catch test suite migrations * format --------- Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
This commit is contained in:
parent
96417452a9
commit
5181c79bbc
@ -495,6 +495,7 @@ public class MigrationUtil {
|
||||
*/
|
||||
@SneakyThrows
|
||||
public static void testSuitesMigration(CollectionDAO collectionDAO) {
|
||||
try {
|
||||
// Update existing test suites as logical test suites and delete any ingestion pipeline
|
||||
// associated with the existing test suite
|
||||
migrateExistingTestSuitesToLogical(collectionDAO);
|
||||
@ -551,6 +552,9 @@ public class MigrationUtil {
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
LOG.error("Failed to migrate test suites", ex);
|
||||
}
|
||||
}
|
||||
|
||||
private static void migrateExistingTestSuitesToLogical(CollectionDAO collectionDAO) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user