Updated Branches: refs/heads/apache-blur-0.2 7e55d54c8 -> 7ca22cd5e
BLUR-261, Fixed unnecessary explicit reference of superclass method in child class. Signed-off-by: Aaron McCurry <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/7ca22cd5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/7ca22cd5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/7ca22cd5 Branch: refs/heads/apache-blur-0.2 Commit: 7ca22cd5e78990ff60479815f5ed3d9fb2c2a887 Parents: 7e55d54 Author: Vikrant Navalgund <[email protected]> Authored: Thu Oct 10 10:51:22 2013 +1100 Committer: Aaron McCurry <[email protected]> Committed: Wed Oct 9 20:25:08 2013 -0400 ---------------------------------------------------------------------- .../java/org/apache/blur/thrift/ThriftBlurControllerServer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/7ca22cd5/blur-core/src/main/java/org/apache/blur/thrift/ThriftBlurControllerServer.java ---------------------------------------------------------------------- diff --git a/blur-core/src/main/java/org/apache/blur/thrift/ThriftBlurControllerServer.java b/blur-core/src/main/java/org/apache/blur/thrift/ThriftBlurControllerServer.java index d3eaf80..e4417ba 100644 --- a/blur-core/src/main/java/org/apache/blur/thrift/ThriftBlurControllerServer.java +++ b/blur-core/src/main/java/org/apache/blur/thrift/ThriftBlurControllerServer.java @@ -95,7 +95,7 @@ public class ThriftBlurControllerServer extends ThriftServer { LOG.info("Controller Server using index [{0}] bind address [{1}] random port assignment [{2}]", serverIndex, bindAddress + ":" + bindPort, randomPort); - String nodeName = ThriftBlurShardServer.getNodeName(configuration, BLUR_CONTROLLER_HOSTNAME); + String nodeName = getNodeName(configuration, BLUR_CONTROLLER_HOSTNAME); nodeName = nodeName + ":" + bindPort; String zkConnectionStr = isEmpty(configuration.get(BLUR_ZOOKEEPER_CONNECTION), BLUR_ZOOKEEPER_CONNECTION);
