Merge branch 'master' of github.com:metamx/druid

This commit is contained in:
fjy 2014-04-14 16:21:17 -07:00
commit 291dac8de8
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);
}