Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
Update application.yaml. fixing connection string (#753)
Browse files Browse the repository at this point in the history
* Update application.yaml. fixing connection string

* Update application.yaml. fixing connection string
  • Loading branch information
SabinaHMCTS authored Nov 6, 2023
1 parent 592ee3c commit d93484f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spring:
### database configuration
datasource:
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:${POSTGRES_PORT:5428}/${POSTGRES_NAME:dbsyncdata}${POSTGRES_CONNECTION_OPTIONS:?}?currentSchema=dbsyncdata
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:${POSTGRES_PORT:5428}/${POSTGRES_NAME:dbsyncdata}${POSTGRES_CONNECTION_OPTIONS:}?currentSchema=${CURRENT_SCHEMA:dbsyncdata}
username: ${POSTGRES_USERNAME:dbsyncdata}
password: ${POSTGRES_PASSWORD:dbsyncdata}
properties:
Expand Down

0 comments on commit d93484f

Please sign in to comment.