Skip to content

Commit

Permalink
[fix] 시간 단위 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suhhyun524 committed Aug 22, 2023
1 parent df5a827 commit d039f4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public String createRefreshToken(Long id, Authentication authentication) {

redisTemplate
.opsForValue()
.set(id.toString(), refreshToken, refreshExpirationTime, TimeUnit.MILLISECONDS);
.set(id.toString(), refreshToken, refreshExpirationTime, TimeUnit.SECONDS);

return refreshToken;
}
Expand Down

0 comments on commit d039f4c

Please sign in to comment.