From 12058971eccf5b0f8a8dd5c4baa1a0aa04da7f4b Mon Sep 17 00:00:00 2001 From: jhh Date: Mon, 9 Aug 2021 19:59:04 -0500 Subject: Add SQL_PORT configuration Issue-ID: POLICY-3533 Signed-off-by: jhh Change-Id: I43f6313550cf1047310486a7f40586febf1847f7 --- .../src/main/feature/config/event-manager.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'controlloop/common/feature-controlloop-management') diff --git a/controlloop/common/feature-controlloop-management/src/main/feature/config/event-manager.properties b/controlloop/common/feature-controlloop-management/src/main/feature/config/event-manager.properties index 762ae581e..2f7f072b9 100644 --- a/controlloop/common/feature-controlloop-management/src/main/feature/config/event-manager.properties +++ b/controlloop/common/feature-controlloop-management/src/main/feature/config/event-manager.properties @@ -19,9 +19,9 @@ # # DB parameters -operation.history.url=jdbc:mariadb://${env:SQL_HOST}:3306/operationshistory -operation.history.userName=${env:SQL_USER} -operation.history.password=${env:SQL_PASSWORD} +operation.history.url=jdbc:mariadb://${envd:SQL_HOST}:${envd:SQL_PORT:3306}/operationshistory +operation.history.userName=${envd:SQL_USER} +operation.history.password=${envd:SQL_PASSWORD} # # Actor parameters -- cgit 1.2.3-korg