Skip to content

Commit

Permalink
[BE] 테스트 서버 배포 (#693)
Browse files Browse the repository at this point in the history
* style: 로그 제거

* [BE] TEST DB 소스 변경 (#686)

* refactor: stop 및 pause 메서드 리팩터링

* feat: 타이머가 실행 중에 다시 실행될 수 없게 조건문 추가

* feat: 타이머가 실행 중일 때만 종료할 수 있게 조건 추가

* refactor: TimerEntity 찾을 때 pairRoom id 대신 PairRoomEntity로 넘기기

* [BE] 클라이언트 에러 로그 없애기 (#692)

* feat: 스켈줄러 매치 에러 보완

* fix: 로그인 확인 로직 필터링 제외

---------

Co-authored-by: reddevilmidzy <[email protected]>
Co-authored-by: lemone <[email protected]>
Co-authored-by: Redddy <[email protected]>
Co-authored-by: lemone <[email protected]>
  • Loading branch information
5 people authored Oct 7, 2024
1 parent 3f53677 commit e8cb1fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public FilterRegistrationBean<AccessTokenSessionFilter> accessTokenSessionFilter
public FilterRegistrationBean<SignInCookieFilter> signInCookieFilter(final JwtProvider jwtProvider) {
final FilterRegistrationBean<SignInCookieFilter> bean = new FilterRegistrationBean<>();
bean.setFilter(new SignInCookieFilter(jwtProvider));
bean.addUrlPatterns("/api/sign-out", "/api/member", "/api/sign-in/check");
bean.addUrlPatterns("/api/sign-out", "/api/member");
bean.setOrder(1);
return bean;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void flush(final String name, final String message) {
.name(name)
.data(message)
);
} catch (IOException e) {
} catch (final IOException e) {
log.warn("SSE 통신 중 에러가 발생했습니다.");
}
}
Expand Down

0 comments on commit e8cb1fe

Please sign in to comment.