Skip to content

Commit

Permalink
Merge pull request #432 from aol/revert
Browse files Browse the repository at this point in the history
Revert back list response changes
  • Loading branch information
jijisv authored Sep 16, 2020
2 parents 8d966fc + 5267a58 commit 07cc233
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void list(@Context UriInfo uriInfo, @Suspended AsyncResponse response) {
response.resume(finder.find(UriInfoParser.toRegisterEntry(uriInfo)));
} catch (Exception e) {
logger.error("list failed with error: {}", e.getMessage(), e);
response.resume(e);
response.resume(Arrays.asList("Bad Request: " + e.getMessage()));
}
}));
}
Expand Down

0 comments on commit 07cc233

Please sign in to comment.