Skip to content

Commit 8cb0b02

Browse files
committed
test(search): 코드 리뷰 사항 반영
- application-test.yml 수정 - elastic search uris -> uri test(search): 코드 리뷰 사항 반영 - application-test.yml 수정
1 parent f1fc7d6 commit 8cb0b02

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/com/somemore/global/configure/ElasticsearchConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
@Configuration
99
public class ElasticsearchConfig extends ElasticsearchConfiguration {
10-
@Value("${elastic.search.uris}")
10+
@Value("${elastic.search.uri}")
1111
private String uri;
1212
@Value("${elastic.search.username}")
1313
private String username;

src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ default:
112112

113113
elastic:
114114
search:
115-
uris: ${ELASTIC_URI}
115+
uri: ${ELASTIC_URI}
116116
username: ${ELASTIC_USERNAME}
117117
password: ${ELASTIC_PASSWORD}
118118

src/test/resources/application-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ cloud:
6060
static: ap-northeast-2
6161
s3:
6262
bucket: somemore
63-
base-url: https://somemore-images.s3.ap-northeast-2.amazonaws.com/
63+
base-url: https://somemore-image.s3.ap-northeast-2.amazonaws.com
6464
stack:
6565
auto: false
6666

@@ -70,7 +70,7 @@ default:
7070

7171
elastic:
7272
search:
73-
uris: localhost:9200
73+
uri: localhost:9200
7474
username: elastic
7575
password: somemore
7676

0 commit comments

Comments
 (0)