Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Consumer Server가 현재 JPA saveall로 구현되어있어, 6시간 지연되
- [메시지 큐 중에 Kafka를 도입한 이유 - 구체적으로 업로드 예정](https://github.com/Kernel360/KDEV3_monicar_BE/blob/develop/img/Kafa도입이유.md)
- [Route53 동작이 제대로 안될 때가 있다.](https://github.com/Kernel360/blog/pull/131)
- [SSE 응답이 계속 대기 중(Pending)으로 유지되는 문제](https://github.com/Kernel360/KDEV3_monicar_BE/wiki/SSE-%EC%9D%91%EB%8B%B5%EC%9D%B4-%EA%B3%84%EC%86%8D-%EB%8C%80%EA%B8%B0-%EC%A4%91(Pending)%EC%9C%BC%EB%A1%9C-%EC%9C%A0%EC%A7%80%EB%90%98%EB%8A%94-%EB%AC%B8%EC%A0%9C)
- [Spring Transaction ‐ Propagation.REQUIRES_NEW 를 써보며 - 수정 예정](https://github.com/Kernel360/KDEV3_monicar_BE/wiki/Spring-Transaction-%E2%80%90-Propagation.REQUIRES_NEW-%EB%A5%BC-%EC%8D%A8%EB%B3%B4%EB%A9%B0)

## 기술 세미나
- [확장가능한 시스템 설계 - 박수현](https://docs.google.com/presentation/d/179fQnnWuqpqkAJLTbvhTNh4YNEe4cjSUiS6bVxZVHAY/edit?usp=sharing)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void validateTokens(String accessToken, String refreshToken) {
throw new BusinessException(FORBIDDEN_ERROR);
}

if (!redisUtil.getRefreshToken(extractUserIdFromAccessToken(refreshToken)).equals(refreshToken)) {
if (!refreshToken.equals(redisUtil.getRefreshToken(extractUserIdFromAccessToken(refreshToken)))) {
throw new BusinessException(FORBIDDEN_ERROR);
}

Expand Down