Skip to content

Commit

Permalink
refact : 코드 컨벤션을 지키도록 코드 고침
Browse files Browse the repository at this point in the history
  • Loading branch information
redblackblossom committed Aug 11, 2024
1 parent 0a9719c commit 98ab75f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void deleteFaceVectorsByPhotoName(List<String> photoNameList){
List<FieldValue> fieldValuePhotoNameList = photoNameList.stream()
.map(FieldValue::of)
.toList();
try{
try {
elasticsearchClient.deleteByQuery(delete -> delete
.index("face_vectors")
.query(q -> q
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class SampleFaceVectorClientRepository {
private final ElasticsearchClient elasticsearchClient;

public void deleteSampleFaceVectorByMemberId(Long memberId) {
try{
try {
elasticsearchClient.deleteByQuery(d -> d
.index("sample_face_vectors")
.query(q -> q
Expand Down

0 comments on commit 98ab75f

Please sign in to comment.