Re-commit some changes which were lost
[so.git] / adapters / mso-catalog-db-adapter / src / main / java / db / migration / R__CloudConfigMigration.java
index 053c6da..469a7ad 100644 (file)
@@ -69,21 +69,6 @@ public class R__CloudConfigMigration implements JdbcMigration, MigrationInfoProv
 
         CloudConfig cloudConfig = null;
 
-        String tableQuery = "SELECT * FROM identity_services";
-        int totalRetries = 20;
-        boolean tableExists = false;
-        int count = 1;
-        while (!tableExists && count != totalRetries) {
-            try (Statement stmt = connection.createStatement();) {
-                stmt.executeQuery(tableQuery);
-                tableExists = true;
-            } catch (SQLException e) {
-                count++;
-                // Wait 5 mintues
-                Thread.sleep(300000);
-            }
-        }
-
         // Try the override file
         String configLocation = System.getProperty("spring.config.additional-location");
         if (configLocation != null) {