인게임메시지 스케줄 버그 수정

This commit is contained in:
2025-08-27 18:39:18 +09:00
parent d75c259350
commit 2e54329ee2

View File

@@ -72,10 +72,6 @@ public class NoticeScheduler extends CommonScheduler {
noticeList.forEach(notice -> {
String key = "notice-" + notice.getId();
if (!schedulerService.isTaskExist(key)) {
if(notice.getEndDt().isBefore(startTime)){
noticeService.updateNoticeStatus(notice.getId(), InGame.SENDSTATUS.FAIL);
return;
}
processedCount.incrementAndGet();
Runnable taskRunner = new Runnable() {