Skip to content

Commit

Permalink
hotfix: 채팅 시간 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
aeyongdodam committed Sep 29, 2024
1 parent f385516 commit 89dad7f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ public class ChatTaskScheduler {
private final ChatRepository chatRepository;
private final ChatNoticeService chatNoticeService;

private static final int TEN_MINUTE = 60000; //1분
private static final int TWENTY_FIVE_MINUTE = 120000; //2분
private static final int THIRTY_MINUTE = 300000; //7분 //테스트용으로 남겨둡니다.
// private static final int TEN_MINUTE = 600000;
// private static final int TWENTY_FIVE_MINUTE = 1500000;
// private static final int THIRTY_MINUTE = 1800000;
// private static final int TEN_MINUTE = 60000; //1분
// private static final int TWENTY_FIVE_MINUTE = 120000; //2분
// private static final int THIRTY_MINUTE = 300000; //7분 //테스트용으로 남겨둡니다.
private static final int TEN_MINUTE = 600000;
private static final int TWENTY_FIVE_MINUTE = 1500000;
private static final int THIRTY_MINUTE = 1800000;
private static final int ONE_DAY = 24 * 60 * 60 * 1000;

public void checkSendRequest(Chat oldChat) {
Expand Down

0 comments on commit 89dad7f

Please sign in to comment.