Skip to content

Commit

Permalink
♻️ [Refactor] 매너평가 메시지 스케줄러 실행 주기 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Eunjin3395 committed Oct 25, 2024
1 parent 3150fa0 commit b785975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/gamegoo/scheduler/SchedulerService.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ public class SchedulerService {
* 매칭 성공 1시간이 경과한 경우, 두 사용자에게 매너평가 시스템 메시지 전송
*/
@Transactional
@Scheduled(fixedRate = 5 * 60 * 1000) // 5 * 60초 주기로 실행
@Scheduled(fixedRate = 60 * 60 * 1000) // 60 * 60초 주기로 실행
public void mannerSystemMessageRun() {
// log.info("scheduler start");

// 매칭 성공 1분이 경과된 matchingRecord 엔티티 조회 (실제로는 60분으로 해야함)
// 매칭 성공 1시간이 경과된 matchingRecord 엔티티 조회
LocalDateTime updatedTime = LocalDateTime.now().minusSeconds(MANNER_MESSAGE_TIME);
List<MatchingRecord> matchingRecordList = matchingRecordRepository.findByStatusAndMannerMessageSentAndUpdatedAtBefore(
MatchingStatus.SUCCESS, false, updatedTime);
Expand Down

0 comments on commit b785975

Please sign in to comment.