Skip to content

Commit c2fcf31

Browse files
committed
fix(be): 배포 오류 해결
1 parent 7548950 commit c2fcf31

File tree

2 files changed

+0
-26
lines changed

2 files changed

+0
-26
lines changed

backend/src/main/java/com/deliveranything/domain/search/store/repository/StoreSearchRepositoryImpl.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public class StoreSearchRepositoryImpl implements StoreSearchRepositoryCustom {
3333
private static final String FIELD_KEYWORDS = "keywords";
3434
private static final String FIELD_CATEGORY_ID = "category_id";
3535
private static final String FIELD_LOCATION = "location";
36-
private static final String SORT_ID = "id";
3736

3837
@Override
3938
public CursorPageResponse<StoreDocument> search(StoreSearchRequest request) {
@@ -58,7 +57,6 @@ public CursorPageResponse<StoreDocument> search(StoreSearchRequest request) {
5857
.order(SortOrder.Asc)));
5958
}
6059

61-
// _id 정렬 또한 알 수 없는 이유로 실패하여, 가장 안정적인 _doc 순서로 정렬;;
6260
queryBuilder.withSort(s -> s.field(f -> f.field("_doc").order(SortOrder.Asc)));
6361

6462
// 커서(search_after) 처리

backend/src/main/java/com/deliveranything/global/config/ElasticsearchConfig.java

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)