Skip to content

Commit

Permalink
fix :: REFRESH_TOKEN_TIME 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Umjiseung committed Aug 13, 2024
1 parent fad83b6 commit c75e357
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@
public class JwtProvider {
private static final String AUTHORITIES_KEY = "auth";
private static final String BEARER_TYPE = "Bearer ";
private static final long ACCESS_TOKEN_TIME = 1000 * 60 * 30L;
private static final long REFRESH_TOKEN_TIME = 1000 * 60 * 60 * 24 * 7L;
private static final long ACCESS_TOKEN_TIME = 60L * 30 * 4;
private static final long REFRESH_TOKEN_TIME = 60L * 60 * 24 * 7;

@Value("${jwt.secret}")
private String secretKey;
Expand Down

0 comments on commit c75e357

Please sign in to comment.