Skip to content

Commit

Permalink
remove deprecation from agents (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb authored Oct 2, 2023
1 parent cf923e4 commit b683c5d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/emissary/server/api/Agents.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public class Agents {

public static final String AGENTS_ENDPOINT = "api/agents";

@Deprecated
public static final String AGENTS_CLUSTER_ENDPOINT = "api/cluster/agents";

@GET
Expand All @@ -50,7 +49,6 @@ public Response agents() {
@GET
@Path("/v1/agents")
@Produces(MediaType.APPLICATION_JSON)
@Deprecated
public Response agentsV1() {
return Response.ok().entity(lookupAgents()).build();
}
Expand All @@ -72,7 +70,6 @@ public Response agentsLogV2() {
@GET
@Path("/cluster/agents")
@Produces(MediaType.APPLICATION_JSON)
@Deprecated
public Response clusterAgents() {
try {
// Get our local information first
Expand Down

0 comments on commit b683c5d

Please sign in to comment.