Skip to content

Commit

Permalink
Merge pull request #462 from Kernel360/hotfix/opensearch-dev-test
Browse files Browse the repository at this point in the history
[HOTFIX] OpenSearch DEV 연결 테스트
  • Loading branch information
tigris24 authored Nov 29, 2024
2 parents dd1593c + 00257eb commit f4baadf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;

import lombok.extern.slf4j.Slf4j;

@Slf4j
@Configuration
public class OpenSearchConfig {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
import com.biengual.core.response.error.exception.CommonException;

import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;

@Slf4j
@Configuration
@RequiredArgsConstructor
public class OpenSearchContentConfig {
Expand Down Expand Up @@ -75,7 +73,6 @@ private void createIndexIfNotExists(OpenSearchClient client) {
client.indices().create(createIndexRequest);
}
} catch (Exception e) {
log.error(e.getMessage(), e);
throw new CommonException(SEARCH_CONTENT_SAVE_FAILED);
}
}
Expand Down

0 comments on commit f4baadf

Please sign in to comment.