Skip to content

Commit

Permalink
Merge pull request #334 from catchroom/develop
Browse files Browse the repository at this point in the history
Refact : 토큰 시간 수정
  • Loading branch information
Parkgeonmoo authored Jan 26, 2024
2 parents f6d1766 + c6996da commit efb7843
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MeJWTService {
@Value("${JWT_TOKEN_SECRET_KEY}")
private String secretKey;

private final long accessTokenValidTime = 10 * 1000L; // access토큰의 유효시간 (30분)
private final long accessTokenValidTime = 30 * 1000L; // access토큰의 유효시간 (30분)
/*private final long accessTokenValidTime = 30 * 60* 1000L; // access토큰의 유효시간 (30분)*/
private final long refreshTokenValidTime = 3000 * 60 * 1000L; //refresh 토큰의 유효시간 (3000분)

Expand Down

0 comments on commit efb7843

Please sign in to comment.