Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Here is test code that is testing our behavior on non existing connector:
new TestDescription("Get connector by non-existing ID", "v1/connector/666", "GET", null, new Validator() { @Override void validate() throws Exception { assertResponseCode(500); assertServerException("org.apache.sqoop.error.code.CommonRepositoryError", "COMMON_0057"); }}), new TestDescription("Get connector by non-existing name", "v1/connector/jarcecs-cool-connector", "GET", null, new Validator() { @Override void validate() throws Exception { assertResponseCode(500); assertServerException("org.apache.sqoop.server.common.ServerError", "SERVER_0005"); }}),
Depending whether one asks for non-existing connector ID or non-existing connector name, he gets different answer. That seems really weird for single REST end point and I think that we should fix that.
Attachments
Attachments
Issue Links
- links to