From 9e77037eb13279a69a38dd78f400365f16e220c1 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Wed, 9 May 2018 09:14:08 -0400 Subject: Change pooling property name Removed "AMSTERDAM_" prefix from pooling topic property name. Added feature-specific conf file with pooling topic property. Enabled distributed locking DB properties. Change distributed locking DB name to "pooling" to match the code. Add default value to feature-specific conf file. Change "_" in default topic name to "-". Change-Id: I53de51787694e5920dc9ced07b5a9ac60bb63e45 Issue-ID: POLICY-782 Signed-off-by: Jim Hahn --- .../main/feature/config/feature-distributed-locking.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'feature-distributed-locking/src/main') diff --git a/feature-distributed-locking/src/main/feature/config/feature-distributed-locking.properties b/feature-distributed-locking/src/main/feature/config/feature-distributed-locking.properties index ee4aa474..665f8227 100644 --- a/feature-distributed-locking/src/main/feature/config/feature-distributed-locking.properties +++ b/feature-distributed-locking/src/main/feature/config/feature-distributed-locking.properties @@ -19,10 +19,10 @@ ### #Database properties -#javax.persistence.jdbc.driver= org.mariadb.jdbc.Driver -#javax.persistence.jdbc.url=jdbc:mariadb://${{SQL_HOST}}:3306/locks -#javax.persistence.jdbc.user=${{SQL_USER}} -#javax.persistence.jdbc.password=${{SQL_PASSWORD}} +javax.persistence.jdbc.driver= org.mariadb.jdbc.Driver +javax.persistence.jdbc.url=jdbc:mariadb://${{SQL_HOST}}:3306/pooling +javax.persistence.jdbc.user=${{SQL_USER}} +javax.persistence.jdbc.password=${{SQL_PASSWORD}} #This value is added to System.currentTimeMs to #set expirationTime when a lock is obtained. -- cgit 1.2.3-korg