Skip to content

Commit

Permalink
fix: duplicated context path (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-otn authored Jan 29, 2024
2 parents 49b42f1 + be60019 commit 6aecacf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@FeignClient(name = "identification", url = "${app.api-url.identification}")
public interface IIdentificationGateway {

@RequestMapping(method = RequestMethod.GET, value = "/identification/clients/{id}")
@RequestMapping(method = RequestMethod.GET, value = "/clients/{id}")
Optional<ClientDTO> getById(@PathVariable("id") String id);

}

0 comments on commit 6aecacf

Please sign in to comment.