Skip to content

Commit

Permalink
feat: sse 타임아웃 시간 5분으로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
seohyun-lee committed Aug 16, 2024
1 parent afa63ae commit f961d37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class EmitterService {
private final AlarmRepository alarmRepository;
private final MemberService memberService;

private static final Long DEFAULT_TIMEOUT = 1L * 60 * 1000; // 1분
private static final Long DEFAULT_TIMEOUT = 5L * 60 * 1000; // 5분

public SseEmitter subscribe() {
Member member = memberService.getCurrentMember();
Expand Down

0 comments on commit f961d37

Please sign in to comment.