We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
resourceGroupId in /presto/selector/read/{resourceGroupId} is wrongly annotated with @QueryParam, when it's actually a path parameter:
resourceGroupId
/presto/selector/read/{resourceGroupId}
@QueryParam
@GET @Path("/selector/read/{resourceGroupId}") public Response readSelector(@QueryParam("resourceGroupId") String resourceGroupIdStr, ...
As a result, /presto/selector/read/X returns all selectors, and not just those in the X resource group.
/presto/selector/read/X
X
The text was updated successfully, but these errors were encountered:
Fix query param type in /presto/selector/read/{resourceGroupId} (lyft…
3743e77
…#209)
c3c4c4f
1fd1879
No branches or pull requests
resourceGroupId
in/presto/selector/read/{resourceGroupId}
is wrongly annotated with@QueryParam
, when it's actually a path parameter:As a result,
/presto/selector/read/X
returns all selectors, and not just those in theX
resource group.The text was updated successfully, but these errors were encountered: