Skip to content

Commit

Permalink
[fix] 유레카 해제
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryeolee committed Nov 20, 2023
1 parent 6129d9a commit 6ee84f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestParam;

@FeignClient(name = "community-service")
@FeignClient(name = "community-service", url = "http://3.38.2.59:8082")
public interface CommunityServiceFeignClient {

@DeleteMapping("/api/community/posting/all-posting")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;

@FeignClient(name = "farm-service")
@FeignClient(name = "farm-service", url = "http://3.36.221.140:8081")
public interface FarmServiceFeignClient {

@DeleteMapping("/api/veggie/{userId}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ public BaseResponseDto<Void> signUpComlete(Long userId){
public BaseResponseDto<Void> deleteUser(Long userId){

userRepository.deleteUser(userId);

communityServiceFeignClient.deleteAllPosting(userId);
farmServiceFeignClient.deleteAllFarm(userId);

communityServiceFeignClient.deleteAllPosting(userId);




Expand Down

0 comments on commit 6ee84f3

Please sign in to comment.