Skip to content

Commit

Permalink
Feat: Session Redis 관련 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JIWON27 committed Jan 17, 2025
1 parent 2888491 commit 65302c7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
13 changes: 8 additions & 5 deletions module-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ spring:
auction:
host: localhost
port: 26379
session:
host: localhost
port: 36379

profiles:
active: dev
Expand All @@ -24,11 +27,11 @@ spring:
level:
root: TRACE

management:
endpoints:
web:
exposure:
include: "prometheus"
management:
endpoints:
web:
exposure:
include: prometheus

#Fegin에 서킷 브레이커 적용 활성화
cloud:
Expand Down
3 changes: 3 additions & 0 deletions module-batch/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ spring:
auction:
host: localhost
port: 26379
session:
host: localhost
port: 36379

profiles:
active: dev
Expand Down
5 changes: 4 additions & 1 deletion module-worker/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ spring:
auction:
host: localhost
port: 26379
session:
host: localhost
port: 36379

profiles:
active: dev

server:
port: 8083

0 comments on commit 65302c7

Please sign in to comment.