Updated Branches: refs/heads/master 2311853db -> c0d998704
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/c0d99870 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/c0d99870 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/c0d99870 Branch: refs/heads/master Commit: c0d998704fab49133876541b945ff7e5fd8f1858 Parents: 2311853 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:30 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/c0d99870/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);
