diff options
author | eh552t <eh552t@intl.att.com> | 2017-09-14 11:14:02 +0200 |
---|---|---|
committer | eh552t <eh552t@intl.att.com> | 2017-09-14 11:14:12 +0200 |
commit | 53bb3d5baf4b63ce5bde7eee67e7cb2a9173121a (patch) | |
tree | 05dd933ee10d39cec00101910786c371ac76d837 /src/main | |
parent | d409b3184a7e9dc3907349e792132add5fd54323 (diff) |
Wait for database with mariadb connector
With the change from Mysql to MariaDB connector
maxReconnect parameter doesn't work anymore.
We then need to use retriesAllDown instead but
this is doing retries as fast as possible with
no wait between tries so need an arbitrary high
value. With maxReconnect it was waiting a time
exponentially growing so a low value was enough.
Change-Id: Id1429759aa4bdcfc9af1934fd6f8b848ed879e91
Signed-off-by: eh552t <eh552t@intl.att.com>
Issue-ID: CLAMP-42
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/resources/application.properties | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 78ab0c6c..42aad2d7 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -94,7 +94,7 @@ kubernetes.namespace=com-att-ajsc #server.port=0
#Camunda Process Engine DataSource connection Details
spring.datasource.camunda.driverClassName=org.mariadb.jdbc.Driver
-spring.datasource.camunda.url=jdbc:mariadb://localhost:${docker.mariadb.port.host}/camundabpm?autoReconnect=true
+spring.datasource.camunda.url=jdbc:mariadb://localhost:${docker.mariadb.port.host}/camundabpm?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647
spring.datasource.camunda.username=camunda
spring.datasource.camunda.password=ndMSpw4CAM
spring.datasource.camunda.validationQuery=SELECT 1
@@ -115,7 +115,7 @@ camunda.bpm.database.schema-update=false #clds datasource connection details
spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
-spring.datasource.cldsdb.url=jdbc:mariadb://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true
+spring.datasource.cldsdb.url=jdbc:mariadb://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647
spring.datasource.cldsdb.username=clds
spring.datasource.cldsdb.password=sidnnd83K
spring.datasource.cldsdb.validationQuery=SELECT 1
|