Repository: ambari Updated Branches: refs/heads/trunk bf85ccec1 -> c7bd689df
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/trunk Commit: c7bd689df4599829fe5e3212fe0baec230a2ddaa Parents: bf85cce Author: Sumit Mohanty <[email protected]> Authored: Sat Feb 18 23:55:18 2017 -0800 Committer: Sumit Mohanty <[email protected]> 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]
