Merge pull request #477 from metamx/minor-cleanup

A few minor cleanups and fixes
This commit is contained in:
fjy 2014-04-14 12:57:58 -06:00
commit 807fff7697
2 changed files with 1 additions and 7 deletions

View File

@ -170,10 +170,9 @@ public class SelectQueryQueryToolChest extends QueryToolChest<Result<SelectResul
++index;
}
final Set<String> metrics = Sets.newTreeSet();
if (query.getMetrics() != null) {
dimensions.addAll(query.getMetrics());
metrics.addAll(query.getMetrics());
}
final byte[][] metricBytes = new byte[metrics.size()][];

View File

@ -212,11 +212,6 @@ public class Announcer
pathsToReinstate.add(path);
}
for (ChildData data : cache.getCurrentData()) {
log.info("Node[%s] in cache is removed to reinstate.", data.getPath());
pathsToReinstate.remove(data.getPath());
}
if (!pathsToReinstate.isEmpty() && !pathsLost.compareAndSet(null, pathsToReinstate)) {
log.info("Already had a pathsLost set!?[%s]", parentPath);
}