Skip to content

Commit

Permalink
shh
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sikina committed Oct 31, 2023
1 parent 09bf67b commit f23c82d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public Response generateContinuousBin(QueryRequest continuousData, @Context Http


@POST
@Path("/services/{container}/{request}")
@Path("/proxy/{container}/{request}")
@Operation(hidden = true)
public Response postProxy(
@PathParam("container") String containerId,
Expand All @@ -285,7 +285,7 @@ public Response postProxy(
}

@GET
@Path("/services/{container}/{request}")
@Path("/proxy/{container}/{request}")
@Operation(hidden = true)
public Response getProxy(
@PathParam("containerId") String containerId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ default Response generateContinuousBin(QueryRequest continuousData) {


@POST
@Path("/services/{container}/{request}")
@Path("/proxy/{container}/{request}")
@Operation(hidden = true)
default Response postProxy(
@PathParam("containerId") String containerId,
Expand All @@ -95,7 +95,7 @@ default Response postProxy(
}

@GET
@Path("/services/{container}/{request}")
@Path("/proxy/{container}/{request}")
@Operation(hidden = true)
default Response getProxy(
@PathParam("containerId") String containerId,
Expand Down

0 comments on commit f23c82d

Please sign in to comment.