Browse Source
Merge pull request #1186 from satblip/fix/interval-env-vars
Add ability to setup interval through env vars
pull/1198/head
Andrew Shvayka
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
application/src/main/resources/thingsboard.yml
|
|
|
@ -222,7 +222,7 @@ redis: |
|
|
|
updates: |
|
|
|
# Enable/disable updates checking. |
|
|
|
enabled: "${UPDATES_ENABLED:true}" |
|
|
|
|
|
|
|
|
|
|
|
# spring CORS configuration |
|
|
|
spring.mvc.cors: |
|
|
|
mappings: |
|
|
|
@ -322,8 +322,8 @@ audit_log: |
|
|
|
password: "${AUDIT_LOG_SINK_PASSWORD:}" |
|
|
|
|
|
|
|
state: |
|
|
|
defaultInactivityTimeoutInSec: 10 |
|
|
|
defaultStateCheckIntervalInSec: 10 |
|
|
|
defaultInactivityTimeoutInSec: "${DEFAULT_INACTIVITY_TIMEOUT:10}" |
|
|
|
defaultStateCheckIntervalInSec: "${DEFAULT_STATE_CHECK_INTERVAL:10}" |
|
|
|
|
|
|
|
kafka: |
|
|
|
enabled: true |
|
|
|
|