test #39

Merged
klaus merged 2 commits from test into main 2023-10-04 03:24:41 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 75efb564fc - Show all commits

View File

@ -43,8 +43,8 @@ class AdminLiveRoomQueryRepository(private val queryFactory: JPAQueryFactory) {
.selectFrom(liveRoom)
.where(
liveRoom.isActive.isTrue
.and(liveRoom.channelName.isNotNull)
.and(liveRoom.beginDateTime.loe(LocalDateTime.now().minusHours(12)))
.and(liveRoom.channelName.isNull)
.and(liveRoom.beginDateTime.loe(LocalDateTime.now().minusHours(4)))
)
.fetch()
}