Github user milleruntime commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/289#discussion_r131425860
--- Diff:
server/monitor/src/main/java/org/apache/accumulo/monitor/rest/trace/TracesResource.java
---
@@ -176,12 +193,15 @@ public Void run() {
@Path("show/{id}")
@GET
public TraceList getTracesType(@PathParam("id") String id) throws
Exception {
- TraceList traces = new TraceList(id);
- if (id == null) {
+ if (StringUtils.isEmpty(id)) {
--- End diff --
I don't know what type of ID this is referring to but if it is a table or
namespace, should create ID type objects.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---