Skip to content

Commit

Permalink
fix: ✏️ modify the TTL of pending chat room (#175)
Browse files Browse the repository at this point in the history
* feat: 각 모듈별 docker파일 분리

* feat: 불필요한 dockerfile 정리

* fix: pended_chat_room ttl 수정
  • Loading branch information
psychology50 authored Oct 14, 2024
1 parent a738d10 commit 9a1d5ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.Objects;

@Getter
@RedisHash(value = "pendedChatRoom", timeToLive = 5)
@RedisHash(value = "pendedChatRoom", timeToLive = 5 * 60)
public class PendedChatRoom {
@Id
private final Long userId;
Expand Down

0 comments on commit 9a1d5ed

Please sign in to comment.