Skip to content

Commit 338e5fe

Browse files
committed
ci[Github-Action]: CI-CD 테스트 환경용 yml에서 embedded-redis에 관한 의존성이 실행되지 않도록 수정
1 parent 66c60d9 commit 338e5fe

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

backend/src/test/resources/application-test-ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,18 @@ spring:
2121
format_sql: true
2222
highlight_sql: true
2323

24-
# CI/CD 환경: 실제 Redis 서비스 사용
24+
# CI/CD 환경: 실제 Redis 서비스 사용, Embedded Redis 비활성화
2525
data:
2626
redis:
2727
host: ${TEST_REDIS_HOST}
2828
port: ${TEST_REDIS_PORT}
2929
password: ${TEST_REDIS_PASSWORD}
3030

31+
# Embedded Redis 비활성화
32+
autoconfigure:
33+
exclude:
34+
- org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
35+
3136
security:
3237
oauth2:
3338
client:

0 commit comments

Comments
 (0)