Skip to content

Commit

Permalink
CNDE-1982: Update port information (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
upasanapattnaik-eq authored Dec 11, 2024
1 parent ec51b9d commit 058cb61
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions investigation-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ spring:
password: ${DB_PASSWORD:-fake.fake.fake.1234}
username: ${DB_USERNAME:-sa}
driverClassName: com.microsoft.sqlserver.jdbc.SQLServerDriver
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_ODSE:NBS_ODSE};encrypt=true;trustServerCertificate=true;
url: ${DB_ODSE_URL:jdbc:sqlserver://localhost:1433;databaseName=:NBS_ODSE;encrypt=true;trustServerCertificate=true;}
odse:
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_ODSE:NBS_ODSE};encrypt=true;trustServerCertificate=true;
url: ${DB_ODSE_URL:jdbc:sqlserver://localhost:1433;databaseName=:NBS_ODSE;encrypt=true;trustServerCertificate=true;}
rdb:
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_RDB:RDB};encrypt=true;trustServerCertificate=true;
url: ${DB_RDB_URL:jdbc:sqlserver://localhost:1433;databaseName=:RDB;encrypt=true;trustServerCertificate=true;}
liquibase:
change-log: db/changelog/db.changelog-master.yaml
service:
Expand Down
2 changes: 1 addition & 1 deletion ldfdata-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spring:
datasource:
password: ${DB_PASSWORD:-fake.fake.fake.1234}
username: ${DB_USERNAME:-sa}
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_ODSE:NBS_ODSE};encrypt=true;trustServerCertificate=true;
url: ${DB_ODSE_URL:jdbc:sqlserver://localhost:1433;databaseName=:NBS_ODSE;encrypt=true;trustServerCertificate=true;}
liquibase:
change-log: db/changelog/db.changelog-master.yaml
server:
Expand Down
2 changes: 1 addition & 1 deletion observation-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spring:
datasource:
password: ${DB_PASSWORD:-fake.fake.fake.1234}
username: ${DB_USERNAME:-sa}
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_ODSE:NBS_ODSE};encrypt=true;trustServerCertificate=true;
url: ${DB_ODSE_URL:jdbc:sqlserver://localhost:1433;databaseName=:NBS_ODSE;encrypt=true;trustServerCertificate=true;}
liquibase:
change-log: db/changelog/db.changelog-master.yaml
server:
Expand Down
2 changes: 1 addition & 1 deletion organization-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spring:
datasource:
password: ${DB_PASSWORD:-fake.fake.fake.1234}
username: ${DB_USERNAME:-sa}
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_ODSE:nbs_odse};encrypt=true;trustServerCertificate=true;
url: ${DB_ODSE_URL:jdbc:sqlserver://localhost:1433;databaseName=:NBS_ODSE;encrypt=true;trustServerCertificate=true;}
liquibase:
change-log: db/changelog/db.changelog-master.yaml
server:
Expand Down
2 changes: 1 addition & 1 deletion person-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spring:
datasource:
password: ${DB_PASSWORD:-fake.fake.fake.1234}
username: ${DB_USERNAME:-sa}
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_ODSE:nbs_odse};encrypt=true;trustServerCertificate=true;
url: ${DB_ODSE_URL:jdbc:sqlserver://localhost:1433;databaseName=:NBS_ODSE;encrypt=true;trustServerCertificate=true;}
liquibase:
change-log: db/changelog/db.changelog-master.yaml
server:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spring:
datasource:
password: ${DB_PASSWORD:-fake.fake.fake.1234}
username: ${DB_USERNAME:-sa}
url: jdbc:sqlserver://${DB_URL:localhost}:1433;databaseName=${DB_RDB:RDB};encrypt=true;trustServerCertificate=true;
url: ${DB_RDB_URL:jdbc:sqlserver://localhost:1433;databaseName=:RDB;encrypt=true;trustServerCertificate=true;}
jpa:
properties:
javax.persistence.query.timeout: -1
Expand Down

0 comments on commit 058cb61

Please sign in to comment.