Skip to content

Commit

Permalink
fix: resttemplate 요청 url 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
choi5798 committed Sep 22, 2023
1 parent d93cf17 commit dc09f0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public RestTemplateServiceProvider(RestTemplateBuilder restTemplateBuilder) {

public void notifyToApprove(int cookingMinute, Order approvedOrder) {
URI uri = UriComponentsBuilder
.fromUriString("http://pomin-server:8080")
.fromUriString("http://localhost:8080")
.path("/api/v1/orders/{orderNumber}")
.encode()
.build(approvedOrder.getOrderNumber());
Expand Down

0 comments on commit dc09f0e

Please sign in to comment.