From 6dafb6e660912f8a2ad9997fe0eb3a3f172b7901 Mon Sep 17 00:00:00 2001 From: soohyun Date: Fri, 11 Aug 2023 19:37:36 +0900 Subject: [PATCH] [Test] refresh time change --- 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 ae50113..802083f 100644 --- a/src/main/java/org/winey/server/service/auth/AuthService.java +++ b/src/main/java/org/winey/server/service/auth/AuthService.java @@ -36,7 +36,7 @@ public class AuthService { private final UserRepository userRepository; private final Long TOKEN_EXPIRATION_TIME_ACCESS = 3 * 60 * 1000L; - private final Long TOKEN_EXPIRATION_TIME_REFRESH = 3 * 24 * 60 * 60 * 1000L; + private final Long TOKEN_EXPIRATION_TIME_REFRESH = 5 * 60 * 1000L; private final GoalRepository goalRepository; private final FeedRepository feedRepository;