Skip to content

Commit

Permalink
test: no-db 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Apr 1, 2024
1 parent ee0da7b commit b5b3c04
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,10 @@ public ChatGetCursorServiceResponse getChatByCursor(
throw new BusinessException(ErrorCode.CHATROOM_NOT_PERMISSION);
}

CursorSummary<ChatSummary> summaries = readByCursorInCacheOrDb(chatRoomId, parameters);
//CursorSummary<ChatSummary> summaries = readByCursorInCacheOrDb(chatRoomId, parameters);
CursorSummary<ChatSummary> chatSummaryCursorSummary = chatReader.readByCursor(chatRoomId, parameters);

return new ChatGetCursorServiceResponse(summaries);
return new ChatGetCursorServiceResponse(chatSummaryCursorSummary);
}

/*
Expand Down

0 comments on commit b5b3c04

Please sign in to comment.