You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by nc...@apache.org on 2017/02/21 16:39:34 UTC

[03/25] ambari git commit: AMBARI-20075. Fix druid router hosts in config (Nishant Bangarwa via smohanty)

AMBARI-20075. Fix druid router hosts in config (Nishant Bangarwa via smohanty)


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

Branch: refs/heads/branch-feature-AMBARI-12556
Commit: c7bd689df4599829fe5e3212fe0baec230a2ddaa
Parents: bf85cce
Author: Sumit Mohanty <sm...@hortonworks.com>
Authored: Sat Feb 18 23:55:18 2017 -0800
Committer: Sumit Mohanty <sm...@hortonworks.com>
Committed: Sat Feb 18 23:56:55 2017 -0800

----------------------------------------------------------------------
 .../common-services/DRUID/0.9.2/package/scripts/params.py          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/c7bd689d/ambari-server/src/main/resources/common-services/DRUID/0.9.2/package/scripts/params.py
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/common-services/DRUID/0.9.2/package/scripts/params.py b/ambari-server/src/main/resources/common-services/DRUID/0.9.2/package/scripts/params.py
index 61f35b2..c615fac 100644
--- a/ambari-server/src/main/resources/common-services/DRUID/0.9.2/package/scripts/params.py
+++ b/ambari-server/src/main/resources/common-services/DRUID/0.9.2/package/scripts/params.py
@@ -221,7 +221,7 @@ druid_coordinator_hosts = default("/clusterHostInfo/druid_coordinator_hosts", []
 druid_coordinator_host = ""
 if not len(druid_coordinator_hosts) == 0:
   druid_coordinator_host = druid_coordinator_hosts[0]
-druid_router_hosts = default("/clusterHostInfo/druid_coordinator_hosts", [])
+druid_router_hosts = default("/clusterHostInfo/druid_router_hosts", [])
 druid_router_host = ""
 if not len(druid_router_hosts) == 0:
   druid_router_host = druid_router_hosts[0]