Skip to content

Commit

Permalink
fix: 디스커버리 주소 참조하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kor-Chipmunk committed Feb 22, 2024
1 parent e6f5bf6 commit e5cb93f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;

@FeignClient(name = "search-service", url = "localhost:20000")
@FeignClient(name = "SEARCH-SERVER")
public interface SearchProxy {
@PostMapping("/search/index/send")
void sendIndexingRequest(@RequestBody IndexingRequestMessageDto dto);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import java.util.List;

@FeignClient(name = "CHATTING-SERVER", url = "localhost:18000")
@FeignClient(name = "CHATTING-SERVER")
public interface FeignChattingClient {

@PostMapping("/v1/api/rooms/create")
Expand Down

0 comments on commit e5cb93f

Please sign in to comment.