Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Commit

Permalink
Fix path argument for force-leave end point (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tipnik authored Jun 6, 2021
1 parent 52c40a8 commit fd8e346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/orbitz/consul/AgentClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ Call<Void> register(@Body Registration registration,
Call<List<Member>> getMembers();

@PUT("agent/force-leave/{node}")
Call<Void> forceLeave(@Path("string") String node);
Call<Void> forceLeave(@Path("node") String node);

@PUT("agent/check/{state}/{checkId}")
Call<Void> check(@Path("state") String state,
Expand Down

0 comments on commit fd8e346

Please sign in to comment.