Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions casper-schedule/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
spring:
application:
name: Casper-Schedule
name: ${SPRING_APPLICATION_NAME}
config:
import: "configserver:${CONFIG_SERVER_URL}"
import: "configserver:${SPRING_CLOUD_CONFIG_URL}"
cloud:
config:
label: main
label: ${SPRING_CLOUD_CONFIG_LABEL}
fail-fast: true
retry:
initial-interval: 1000
max-attempts: 6
max-interval: 2000
multiplier: 1.1
profiles:
active: ${SPRING_PROFILES_ACTIVE}
active: ${SPRING_CLOUD_CONFIG_PROFILE}

management:
endpoints:
web:
exposure:
include: health,info,refresh
encrypt:
key: ${ENCRYPT_KEY}
salt: ${ENCRYPT_SALT}
Loading