You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently in the route GET /orgs/{orgid}/status, if the caller supplies an orgId that doesn't exist in the exchange, this route will succeed with code 200 OK and return zeroes for all values in the response body. This behavior is unintended.
The intended behavior should be that this route returns a 404 NOT FOUND code when the supplied orgId does not exist in the exchange. This route should be updated with this new behavior, and the associated test suite should be updated as well to test this behavior.
The text was updated successfully, but these errors were encountered:
Currently in the route
GET /orgs/{orgid}/status
, if the caller supplies anorgId
that doesn't exist in the exchange, this route will succeed with code200 OK
and return zeroes for all values in the response body. This behavior is unintended.The intended behavior should be that this route returns a
404 NOT FOUND
code when the suppliedorgId
does not exist in the exchange. This route should be updated with this new behavior, and the associated test suite should be updated as well to test this behavior.The text was updated successfully, but these errors were encountered: