From 005c548b38268340912fe9e1ad71c65276c41382 Mon Sep 17 00:00:00 2001 From: GeorgeC Date: Fri, 23 Aug 2024 14:38:06 -0400 Subject: [PATCH] Update JDBC URL scheme for PostgreSQL connection --- 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 28ff851..060f70c 100644 --- a/src/main/resources/application-bdc.properties +++ b/src/main/resources/application-bdc.properties @@ -1,7 +1,7 @@ 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:postgres://${DATASOURCE_URL}/auth?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true +spring.datasource.url=jdbc-secretsmanager:postgresql://${DATASOURCE_URL}/auth?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true spring.datasource.username=${DATASOURCE_USERNAME} server.port=80