Skip to content

Commit

Permalink
HelloThere-131 Auto Scaling 그룹에 코드 배포가 잘 적용되는지 확인
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlstjq123 committed Aug 21, 2023
1 parent 5c4bc8e commit cc559d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
@Slf4j
@Component
public class JwtProvider {
private static final long REFRESH_TOKEN_EXPIRE_TIME = 1 * 24 * 60 * 60 * 1000L; //refreshToken 유효기간 1일
private static final long ACCESS_TOKEN_EXPIRE_TIME = 1 * 60 * 60 * 1000L; //accessToken 유효기간 1시간
private static final long REFRESH_TOKEN_EXPIRE_TIME = 3 * 24 * 60 * 60 * 1000L; //refreshToken 유효기간 3일
private static final long ACCESS_TOKEN_EXPIRE_TIME = 12 * 60 * 60 * 1000L; //accessToken 유효기간 12시간

// private static final long REFRESH_TOKEN_EXPIRE_TIME = 60 * 1000L; //refreshToken 유효기간 1분, refrshToken 테스트를 위해 사용
// private static final long ACCESS_TOKEN_EXPIRE_TIME = 10 * 1000L; //유효기간 10초, refrshToken 테스트를 위해 사용
Expand Down

0 comments on commit cc559d5

Please sign in to comment.