From f117ee4ffbd597472cf655ce1ae29dd1f29ae36d Mon Sep 17 00:00:00 2001 From: soohyun Date: Fri, 11 Aug 2023 18:44:37 +0900 Subject: [PATCH] [Test] accessToken test --- src/main/java/org/winey/server/service/auth/AuthService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 5af6a99..ae50113 100644 --- a/src/main/java/org/winey/server/service/auth/AuthService.java +++ b/src/main/java/org/winey/server/service/auth/AuthService.java @@ -35,7 +35,7 @@ public class AuthService { private final UserRepository userRepository; - private final Long TOKEN_EXPIRATION_TIME_ACCESS = 360 * 60 * 1000L; + private final Long TOKEN_EXPIRATION_TIME_ACCESS = 3 * 60 * 1000L; private final Long TOKEN_EXPIRATION_TIME_REFRESH = 3 * 24 * 60 * 60 * 1000L; private final GoalRepository goalRepository;