|
|
|
|
@ -64,6 +64,11 @@ public class FlywayProperties {
@@ -64,6 +64,11 @@ 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). |
|
|
|
|
*/ |
|
|
|
|
@ -363,6 +368,14 @@ public class FlywayProperties {
@@ -363,6 +368,14 @@ 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; |
|
|
|
|
} |
|
|
|
|
|