Skip to content

Commit

Permalink
Merge pull request #10 from nhnacademy-be4-My-Books/feature/l4
Browse files Browse the repository at this point in the history
refactor: properties 수정
  • Loading branch information
newjaehun authored Feb 19, 2024
2 parents 8e14556 + 72eec50 commit 5941473
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Docker Image CI

on:
push:
branches: [ "main", "dev" ]
branches: [ "main", "dev", "feature/l4" ]
pull_request:
branches: [ "main", "dev" ]
branches: [ "main", "dev", "feature/l4" ]

jobs:

Expand Down
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-status",
ResponseEntity<List<Response>> exchange = restTemplate.exchange("http://180.210.83.227:6060" + "/api/orders-statuses",
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 5941473

Please sign in to comment.