Skip to content

Commit d15e281

Browse files
authoredFeb 26, 2025
Merge pull request #1177 from woowacourse-teams/BE/dev
[BE] 타이머 상태 전송 변경사항 테스트 서버로 이동
2 parents 516cae8 + 7ec41b1 commit d15e281

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎backend/src/main/java/site/coduo/websocket/stomp/StompEventListener.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ public void onSubscription(final SessionSubscribeEvent event) {
3030
throw new NotFoundAccessCodeInQueryException("STOMP 헤더에 simpDestination이 존재하지 않습니다.");
3131
}
3232
final String key = parsePairRoomKey(destination);
33-
schedulerService.notifyTimerStatus(key);
33+
if (timerStompManager.isTimerStatusDestination(key, destination)) {
34+
schedulerService.notifyTimerStatus(key);
35+
}
3436
}
3537

3638
@EventListener
@@ -41,7 +43,9 @@ public void onUnSubscription(final SessionUnsubscribeEvent event) {
4143
throw new NotFoundAccessCodeInQueryException("STOMP 헤더에 simpSubscriptionId가 존재하지 않습니다.");
4244
}
4345
final String key = parsePairRoomKey(destination);
44-
schedulerService.syncTimerWithDatabase(key);
46+
if (timerStompManager.isTimerStatusDestination(key, destination)) {
47+
schedulerService.syncTimerWithDatabase(key);
48+
}
4549
}
4650

4751
private String parsePairRoomKey(final String destination) {

0 commit comments

Comments
 (0)