Fixed issue with flyway migration
All checks were successful
Locusworks Team/commons/pipeline/head This commit looks good

This commit is contained in:
2021-09-14 22:00:15 -05:00
parent ea42a8b36d
commit 09f3bbbc74
2 changed files with 5 additions and 1 deletions

View File

@ -43,6 +43,10 @@
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<failOnError>true</failOnError>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>

View File

@ -25,7 +25,7 @@ public class MigrationItem {
}
public String[] getSchemas() {
return flyway.getSchemas();
return flyway.getConfiguration().getSchemas();
}
public int qtyPending() {