Skip to content

Commit

Permalink
refactor: Nginx-front 테스트 위해 잠시 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
newjaehun committed Feb 19, 2024
1 parent 8c23e3d commit 84bd050
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public List<Response> test() {

HttpEntity<List<Response>> requestEntity = new HttpEntity<>(headers);

ResponseEntity<List<Response>> exchange = restTemplate.exchange(gatewayAdaptorProperties.getAddress() + "/api/orders-statuses",
ResponseEntity<List<Response>> exchange = restTemplate.exchange("http://180.210.83.227:6060" + "/api/orders-status",
HttpMethod.GET,
requestEntity,
new ParameterizedTypeReference<List<Response>>() {
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
server.port=8080
logging.level.root=debug
store.mybooks.front.config.gateway.address="http://180.210.83.227:6060"

0 comments on commit 84bd050

Please sign in to comment.