Skip to content

Commit 8420efe

Browse files
committed
[fix] : TTL 6minutes update
1 parent 21746c2 commit 8420efe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/cona/KUsukKusuk/global/security/LoginFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected void successfulAuthentication(HttpServletRequest request, HttpServletR
8383

8484
String password = customUserDetails.getPassword();
8585
//AT : 6분
86-
String accessToken = jwtUtil.createJwt(username, password, 60*60*1000L);
86+
String accessToken = jwtUtil.createJwt(username, password, 60*60*100L);
8787
//RT : 7일
8888
String refreshToken = jwtUtil.createRefreshToken(username, password, 86400000*7L);
8989

0 commit comments

Comments
 (0)