Skip to content

Commit

Permalink
Test: access 토큰 만료시간 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tioon committed May 19, 2024
1 parent 7b3c218 commit 46ff411
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class LoginService {
private final JwtTokenProvider jwtTokenProvider;
private final S3ImageStorageService s3ImageStorageService;
public static final Duration REFRESH_TOKEN_DURATION = Duration.ofMinutes(2); // 리프레시 토큰 유효기간.
public static final Duration ACCESS_TOKEN_DURATION = Duration.ofHours(1); // 액세스 토큰 유효기간.
public static final Duration ACCESS_TOKEN_DURATION = Duration.ofMinutes(2); // 액세스 토큰 유효기간.


/**
Expand Down

0 comments on commit 46ff411

Please sign in to comment.