Add ability to setup interval through env vars

This commit is contained in:
Louis Borsu 2018-10-25 15:34:55 +02:00
parent be937278ba
commit 0720161279

View File

@ -222,7 +222,7 @@ redis:
updates: updates:
# Enable/disable updates checking. # Enable/disable updates checking.
enabled: "${UPDATES_ENABLED:true}" enabled: "${UPDATES_ENABLED:true}"
# spring CORS configuration # spring CORS configuration
spring.mvc.cors: spring.mvc.cors:
mappings: mappings:
@ -322,8 +322,8 @@ audit_log:
password: "${AUDIT_LOG_SINK_PASSWORD:}" password: "${AUDIT_LOG_SINK_PASSWORD:}"
state: state:
defaultInactivityTimeoutInSec: 10 defaultInactivityTimeoutInSec: "${DEFAULT_INACTIVITY_TIMEOUT:10}"
defaultStateCheckIntervalInSec: 10 defaultStateCheckIntervalInSec: "${DEFAULT_STATE_CHECK_INTERVAL:10}"
kafka: kafka:
enabled: true enabled: true