You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by gr...@apache.org on 2014/12/04 21:11:05 UTC

[30/50] incubator-usergrid git commit: Updated registry to use public dns name

Updated registry to use public dns name


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/2e1d8bd9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/2e1d8bd9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/2e1d8bd9

Branch: refs/heads/USERGRID-256-ApiResponseImplementation
Commit: 2e1d8bd96c01df4b7214f7b4e7165257d30fe76d
Parents: 91e25b5
Author: Todd Nine <tn...@apigee.com>
Authored: Mon Dec 1 10:01:07 2014 -0700
Committer: Todd Nine <tn...@apigee.com>
Committed: Mon Dec 1 10:01:07 2014 -0700

----------------------------------------------------------------------
 stack/awscluster/src/main/groovy/NodeRegistry.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/2e1d8bd9/stack/awscluster/src/main/groovy/NodeRegistry.groovy
----------------------------------------------------------------------
diff --git a/stack/awscluster/src/main/groovy/NodeRegistry.groovy b/stack/awscluster/src/main/groovy/NodeRegistry.groovy
index 51aa8af..0288ae4 100644
--- a/stack/awscluster/src/main/groovy/NodeRegistry.groovy
+++ b/stack/awscluster/src/main/groovy/NodeRegistry.groovy
@@ -111,7 +111,7 @@ class NodeRegistry {
 
                 //TODO, add these to a list then sort them by date, then name
                 for (instance in reservation.getInstances()) {
-                    servers.add(new ServerEntry(instance.launchTime, instance.publicIpAddress));
+                    servers.add(new ServerEntry(instance.launchTime, instance.publicDnsName));
                 }
 
             }