From 267222863779c128c96914f8c3d173e6f6239d72 Mon Sep 17 00:00:00 2001 From: dooboocookie Date: Fri, 17 Nov 2023 17:42:02 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20=ED=86=A0=ED=81=B0=20=EC=9C=A0?= =?UTF-8?q?=ED=9A=A8=EA=B8=B0=EA=B0=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../now/naaga/auth/infrastructure/jwt/AuthTokenGenerator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main/java/com/now/naaga/auth/infrastructure/jwt/AuthTokenGenerator.java b/backend/src/main/java/com/now/naaga/auth/infrastructure/jwt/AuthTokenGenerator.java index 23062f740..aacd2fd32 100644 --- a/backend/src/main/java/com/now/naaga/auth/infrastructure/jwt/AuthTokenGenerator.java +++ b/backend/src/main/java/com/now/naaga/auth/infrastructure/jwt/AuthTokenGenerator.java @@ -14,8 +14,8 @@ @Component public class AuthTokenGenerator { - private static final long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 20; // 20초 - private static final long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 1; // 1분 + private static final long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 30; // 30일 + private static final long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 30; // 30일 private final JwtProvider jwtProvider;