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) .selectFrom(liveRoom)
.where( .where(
liveRoom.isActive.isTrue liveRoom.isActive.isTrue
.and(liveRoom.channelName.isNotNull) .and(liveRoom.channelName.isNull)
.and(liveRoom.beginDateTime.loe(LocalDateTime.now().minusHours(12))) .and(liveRoom.beginDateTime.loe(LocalDateTime.now().minusHours(4)))
) )
.fetch() .fetch()
} }