Skip to content

Commit

Permalink
test: 리프레시 토큰 확인을 위한 액세스 토큰 만료시간 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
tfer2442 committed Dec 1, 2024
1 parent c8ab412 commit f0367dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public final class LoginConstants {
public static final String ROLE_CLAIM = "role";
public static final String CATEGORY_CLAIM = "category";

public static final long ACCESS_TOKEN_EXPIRATION_TIME_MS = 3600*1000; // 1 hour
public static final long ACCESS_TOKEN_EXPIRATION_TIME_MS = 60*1000; // 1 hour
public static final long REFRESH_TOKEN_EXPIRATION_TIME_MS = 86400*1000; // 1 day
public static final long REFRESH_TOKEN_EXPIRATION_TIME_S = 86400; // 1day
}

0 comments on commit f0367dc

Please sign in to comment.