From f8711cca4219874ac0e3afc8fc244f4e0e3faec6 Mon Sep 17 00:00:00 2001 From: soohyun Date: Thu, 24 Aug 2023 01:04:39 +0900 Subject: [PATCH] =?UTF-8?q?[Test]=20=EC=95=84=EC=9A=94=20=ED=86=A0?= =?UTF-8?q?=ED=81=B0=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/org/winey/server/service/auth/AuthService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/winey/server/service/auth/AuthService.java b/src/main/java/org/winey/server/service/auth/AuthService.java index 9edb99f..ab696ba 100644 --- a/src/main/java/org/winey/server/service/auth/AuthService.java +++ b/src/main/java/org/winey/server/service/auth/AuthService.java @@ -39,8 +39,8 @@ public class AuthService { private final UserRepository userRepository; - private final Long TOKEN_EXPIRATION_TIME_ACCESS = 100 * 24 * 60 * 60 * 1000L; - private final Long TOKEN_EXPIRATION_TIME_REFRESH = 300 *24 * 60 * 60 * 1000L; + private final Long TOKEN_EXPIRATION_TIME_ACCESS = 3 * 60 * 1000L; + private final Long TOKEN_EXPIRATION_TIME_REFRESH = 5 * 60 * 1000L; private final GoalRepository goalRepository; private final FeedRepository feedRepository;