Skip to content

Commit

Permalink
refactor : accessToken의 만료시간 5분으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
2iedo committed Nov 1, 2024
1 parent 1b03397 commit 539684a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
@Service
public class TokenService {

private static final long ACCESS_TEN_HOURS = 1000 * 60 * 60 * 10;
private static final long ACCESS_TEN_HOURS = 1000 * 60 * 5;
private static final long REFRESH_SEVEN_DAYS = 1000 * 60 * 60 * 24 * 7;

private final Key secretKey;
Expand Down

0 comments on commit 539684a

Please sign in to comment.