Skip to content

Commit

Permalink
fix: duplicated context path
Browse files Browse the repository at this point in the history
  • Loading branch information
g-otn committed Jan 29, 2024
1 parent 49b42f1 commit be60019
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 be60019

Please sign in to comment.