From db7e2de26dd51c84d21c0cff69011f948f01e595 Mon Sep 17 00:00:00 2001 From: GeorgeC Date: Thu, 22 Aug 2024 10:11:40 -0400 Subject: [PATCH] Update datasource URL to use PostgreSQL --- src/main/resources/application-bdc.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application-bdc.properties b/src/main/resources/application-bdc.properties index 2c9602f..352e321 100644 --- a/src/main/resources/application-bdc.properties +++ b/src/main/resources/application-bdc.properties @@ -1,6 +1,6 @@ spring.application.name=dictionary spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect spring.datasource.driver-class-name=com.amazonaws.secretsmanager.sql.AWSSecretsManagerPostgreSQLDriver -spring.datasource.url=jdbc-secretsmanager:mysql://${DATASOURCE_URL}/auth?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true +spring.datasource.url=jdbc-secretsmanager:postgres://${DATASOURCE_URL}/auth?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true spring.datasource.username=${DATASOURCE_USERNAME} server.port=80 \ No newline at end of file