You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by mb...@apache.org on 2018/06/12 17:15:17 UTC

asterixdb git commit: [NO ISSUE] Use public address/port for client advertisement

Repository: asterixdb
Updated Branches:
  refs/heads/release-0.9.4-pre-rc 4e2ebaaca -> 6a4c4d9ec


[NO ISSUE] Use public address/port for client advertisement

Change-Id: Ia88912f144fa3b0e4b79341c245bd45ae0453f80
Reviewed-on: https://asterix-gerrit.ics.uci.edu/2706
Reviewed-by: Murtadha Hubail <mh...@apache.org>
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>


Project: http://git-wip-us.apache.org/repos/asf/asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/asterixdb/commit/6a4c4d9e
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/6a4c4d9e
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/6a4c4d9e

Branch: refs/heads/release-0.9.4-pre-rc
Commit: 6a4c4d9ecd0fd49b938d65ac909f7b47804d49d9
Parents: 4e2ebaa
Author: Michael Blow <mb...@apache.org>
Authored: Tue Jun 12 12:10:17 2018 -0400
Committer: Michael Blow <mb...@apache.org>
Committed: Tue Jun 12 10:13:58 2018 -0700

----------------------------------------------------------------------
 .../org/apache/hyracks/control/cc/ClusterControllerService.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/6a4c4d9e/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-cc/src/main/java/org/apache/hyracks/control/cc/ClusterControllerService.java
----------------------------------------------------------------------
diff --git a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-cc/src/main/java/org/apache/hyracks/control/cc/ClusterControllerService.java b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-cc/src/main/java/org/apache/hyracks/control/cc/ClusterControllerService.java
index 8953bec..153a32d 100644
--- a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-cc/src/main/java/org/apache/hyracks/control/cc/ClusterControllerService.java
+++ b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-cc/src/main/java/org/apache/hyracks/control/cc/ClusterControllerService.java
@@ -409,7 +409,7 @@ public class ClusterControllerService implements IControllerService {
     }
 
     public NetworkAddress getDatasetDirectoryServiceInfo() {
-        return new NetworkAddress(ccConfig.getClientListenAddress(), ccConfig.getClientListenPort());
+        return new NetworkAddress(ccConfig.getClientPublicAddress(), ccConfig.getClientPublicPort());
     }
 
     public JobIdFactory getJobIdFactory() {