diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-02-21 15:10:40 +0100 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-02-21 15:10:40 +0100 |
commit | 445a2a432b3c15fd7e4bbf0e112df39466db29a9 (patch) | |
tree | b9738d9b710c806f8f439965fb4a2d954cdc539b /src/main | |
parent | 373a9273031147e4034dfd0e530b3657ca709b5a (diff) |
Rework DB connection URL
Add timeout parameters to the DB URL
Issue-ID: CLAMP-85
Change-Id: I4cb3f2b4f8744bc240a49440f720b11328927dd6
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/resources/application.properties | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index dd4ea6d36..38a719d8e 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -88,7 +88,7 @@ camel.springboot.xmlRoutes=classpath:/clds/camel/*.xml #clds datasource connection details
spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
-spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647
+spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
spring.datasource.cldsdb.username=clds
spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
spring.datasource.cldsdb.validationQuery=SELECT 1
|