You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by al...@apache.org on 2022/02/11 17:28:23 UTC

[fineract] branch develop updated: FINERACT-1499-DB-connection-exception-fix-for-bootRun

This is an automated email from the ASF dual-hosted git repository.

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new fbdceea  FINERACT-1499-DB-connection-exception-fix-for-bootRun
fbdceea is described below

commit fbdceea3841b6a82a76afd19eddbf7ae22d734ee
Author: Manoj <ma...@fynarfin.io>
AuthorDate: Thu Feb 10 23:48:20 2022 +0530

    FINERACT-1499-DB-connection-exception-fix-for-bootRun
---
 fineract-provider/src/main/resources/application.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fineract-provider/src/main/resources/application.properties b/fineract-provider/src/main/resources/application.properties
index 208a722..92b6f4e 100644
--- a/fineract-provider/src/main/resources/application.properties
+++ b/fineract-provider/src/main/resources/application.properties
@@ -51,7 +51,7 @@ server.forward-headers-strategy=framework
 spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:9000/auth/realms/fineract
 
 spring.datasource.hikari.driverClassName=${FINERACT_HIKARI_DRIVER_SOURCE_CLASS_NAME:org.mariadb.jdbc.Driver}
-spring.datasource.hikari.jdbcUrl=${FINERACT_HIKARI_JDBC_URL:'jdbc:mariadb://localhost:3306/fineract_tenants'}
+spring.datasource.hikari.jdbcUrl=${FINERACT_HIKARI_JDBC_URL:jdbc:mariadb://localhost:3306/fineract_tenants}
 spring.datasource.hikari.username=${FINERACT_HIKARI_USERNAME:root}
 spring.datasource.hikari.password=${FINERACT_HIKARI_PASSWORD:mysql}
 spring.datasource.hikari.minimumIdle=${FINERACT_HIKARI_MINIMUM_IDLE:3}