Skip to content

Commit 4991166

Browse files
author
이예림
committed
fix: 사용자 확인 예외처리 주석
1 parent 9674566 commit 4991166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/climbup/climbup/auth/service/TokenService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ public class TokenService {
2727

2828
public TokenResponse createTokens(Long userId) {
2929
// 사용자 존재 여부 확인
30-
userRepository.findById(userId)
31-
.orElseThrow(() -> new UserNotFoundException(userId));
30+
// userRepository.findById(userId)
31+
// .orElseThrow(() -> new UserNotFoundException(userId));
3232

3333
String accessToken = jwtUtil.createAccessToken(userId);
3434
String refreshToken = jwtUtil.createRefreshToken(userId);

0 commit comments

Comments
 (0)