The maximum time between retries when attempting to connect to the database in seconds. This will cap the interval between connect retries to the value provided.
120
./flyway -connectRetriesInterval=60 info
flyway.connectRetriesInterval=60
FLYWAY_CONNECT_RETRIES_INTERVAL=60
Flyway.configure()
.connectRetriesInterval(60)
.load()
flyway {
connectRetriesInterval = 60
}
<configuration>
<connectRetriesInterval>60</connectRetriesInterval>
</configuration>