Merged
Conversation
Test Results105 files 105 suites 16s ⏱️ Results for commit 02618e9. ♻️ This comment has been updated with latest results. |
📝 Test Coverage Report
|
coli-geonwoo
approved these changes
Feb 25, 2026
Collaborator
coli-geonwoo
left a comment
There was a problem hiding this comment.
/noti-be
client 충돌 문제가 있군요.. 죄송합니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚩 연관 이슈
closed #520
⏰ 우선순위(P1,P2,P3)
P1
🔧 작업 내용
기존에는 Spring Boot 기본 Redis 클라이언트인 Lettuce 기반 RedisConnectionFactory를 사용하고 있었습니다.
그러나 프로젝트의 다른 부분에 Redisson 설정이 추가되면서 RedisConnectionFactory가 RedissonConnectionFactory로 교체되었습니다.
이로 인해 모든 RedisTemplate 작업이 다음 경로를 따르게 되었습니다:
이 과정에서 Spring의 DefaultedRedisConnection이 expire() 호출 시 내부적으로 keyCommands().pExpire()를 사용하도록 설계된 구조와, Redisson 구현체가 pExpire()를 다시 connection.pExpire()로 위임하는 구조가 충돌했습니다.
그 결과 서로를 다시 호출하는 순환 위임이 발생하여 expire 호출이 정상적으로 동작하지 않는 문제가 발생했습니다.
따라서 해당 문제를
Redisson 라이브러리의 직접 호출을 통해 문제 해결
📝 고민내용(선택)
🏞️ 스크린샷 (선택)
🗣️ 리뷰 요구사항 (선택)