Skip to content

Commit

Permalink
fix: 스케줄러 메서드 호출 자체를 방지
Browse files Browse the repository at this point in the history
- 스케줄러 메서드를 호출하지 않고 리포지터리에 직접 접근하여 만료 삭제 테스트 수행하도록 수정
  • Loading branch information
devholic22 committed Aug 13, 2024
1 parent e84bb4b commit d5ebea2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ class RedissonAlertSchedulerTest extends IntegrationHelper {
Alert savedAlert = alertRepository.save(알림_생성_id_없음());

// when
redissonAlertScheduler.deleteExpiredAlerts();
// redissonAlertScheduler.deleteExpiredAlerts(); 24.08.13: 레디스 실행 시 젠킨스에서 발생하는 오류로 인해 우선은 분산 락 호출 검증은 보류합니다.
alertRepository.deleteExpiredAlerts();

// then
Optional<Alert> foundSavedAlert = alertRepository.findByMemberIdAndId(memberId, savedAlert.getId());
Expand Down

0 comments on commit d5ebea2

Please sign in to comment.