|
|
|
@ -64,11 +64,6 @@ public class FlywayProperties {
|
|
|
|
|
*/
|
|
|
|
|
private int connectRetries;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maximum number of retries when trying to obtain a lock.
|
|
|
|
|
*/
|
|
|
|
|
private Integer lockRetryCount;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Default schema name managed by Flyway (case-sensitive).
|
|
|
|
|
*/
|
|
|
|
@ -368,14 +363,6 @@ public class FlywayProperties {
|
|
|
|
|
this.connectRetries = connectRetries;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getLockRetryCount() {
|
|
|
|
|
return this.lockRetryCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setLockRetryCount(Integer lockRetryCount) {
|
|
|
|
|
this.lockRetryCount = lockRetryCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDefaultSchema() {
|
|
|
|
|
return this.defaultSchema;
|
|
|
|
|
}
|
|
|
|
|