Bläddra i källkod

print proper name of flyway table

tags/2.0.1
Jonathan Cobb 4 år sedan
förälder
incheckning
6bf15dc140
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      wizard-server/src/main/java/org/cobbzilla/wizard/server/listener/FlywayMigrationListener.java

+ 1
- 1
wizard-server/src/main/java/org/cobbzilla/wizard/server/listener/FlywayMigrationListener.java Visa fil

@@ -43,7 +43,7 @@ public class FlywayMigrationListener<C extends RestServerConfiguration> extends
configuration.execSql("SELECT * from flyway_schema_history");
} catch (UncheckedSqlException e) {
if (e.getSqlException() != null && e.getSqlException() instanceof PSQLException && e.getMessage().contains(" does not exist")) {
log.warn("schema_version table does not exist, will baseline DB");
log.warn("flyway_schema_history table does not exist, will baseline DB");
baseline = true;
} else {
throw e;


Laddar…
Avbryt
Spara