Showing
2 changed files
with
6 additions
and
3 deletions
... | ... | @@ -211,7 +211,7 @@ ui: |
211 | 211 | database: |
212 | 212 | ts_max_intervals: "${DATABASE_TS_MAX_INTERVALS:700}" # Max number of DB queries generated by a single API call to fetch telemetry records |
213 | 213 | ts: |
214 | - type: "${DATABASE_TS_TYPE:timescale}" # cassandra, sql, or timescale (for hybrid mode, DATABASE_TS_TYPE value should be cassandra, or timescale) | |
214 | + type: "${DATABASE_TS_TYPE:sql}" # cassandra, sql, or timescale (for hybrid mode, DATABASE_TS_TYPE value should be cassandra, or timescale) | |
215 | 215 | ts_latest: |
216 | 216 | type: "${DATABASE_TS_LATEST_TYPE:sql}" # cassandra, sql, or timescale (for hybrid mode, DATABASE_TS_TYPE value should be cassandra, or timescale) |
217 | 217 | |
... | ... | @@ -766,9 +766,9 @@ spring: |
766 | 766 | datasource: |
767 | 767 | # Database driver for Spring JPA - org.postgresql.Driver |
768 | 768 | driverClassName: "${SPRING_DRIVER_CLASS_NAME:org.postgresql.Driver}" |
769 | - url: "${SPRING_DATASOURCE_URL:jdbc:postgresql://222.180.200.114:20638/z_tk_fatest_cloud_001}" | |
769 | + url: "${SPRING_DATASOURCE_URL:jdbc:postgresql://10.9.0.221:5432/thingskit}" | |
770 | 770 | username: "${SPRING_DATASOURCE_USERNAME:postgres}" |
771 | - password: "${SPRING_DATASOURCE_PASSWORD:Thw770!!uriq}" | |
771 | + password: "${SPRING_DATASOURCE_PASSWORD:postgres}" | |
772 | 772 | hikari: |
773 | 773 | # This property controls the amount of time that a connection can be out of the pool before a message is logged indicating a possible connection leak. A value of 0 means leak detection is disabled |
774 | 774 | leakDetectionThreshold: "${SPRING_DATASOURCE_HIKARI_LEAK_DETECTION_THRESHOLD:0}" | ... | ... |