Repository: ambari Updated Branches: refs/heads/branch-2.5 3d9cf0516 -> f02153d46
AMBARI-19778. For alerts, alert_hive_interactive_thrift_port.py script is reading hive.server2.transport.mode property from hive-site config, ideally it should be reading from hive-interactive-site config (Ayub Khan via smohanty) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/f02153d4 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/f02153d4 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/f02153d4 Branch: refs/heads/branch-2.5 Commit: f02153d46bbe997f4c122f287e49169f7b131bed Parents: 3d9cf05 Author: Sumit Mohanty <[email protected]> Authored: Mon Jan 30 11:36:52 2017 -0800 Committer: Sumit Mohanty <[email protected]> Committed: Mon Jan 30 11:37:40 2017 -0800 ---------------------------------------------------------------------- .../package/alerts/alert_hive_interactive_thrift_port.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/f02153d4/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/alerts/alert_hive_interactive_thrift_port.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/alerts/alert_hive_interactive_thrift_port.py b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/alerts/alert_hive_interactive_thrift_port.py index 25c4b28..9bb7edf 100644 --- a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/alerts/alert_hive_interactive_thrift_port.py +++ b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/alerts/alert_hive_interactive_thrift_port.py @@ -34,7 +34,7 @@ CRITICAL_MESSAGE = "Connection failed on host {0}:{1} ({2})" HIVE_SERVER_INTERACTIVE_THRIFT_PORT_KEY = '{{hive-interactive-site/hive.server2.thrift.port}}' HIVE_SERVER_INTERACTIVE_THRIFT_HTTP_PORT_KEY = '{{hive-interactive-site/hive.server2.thrift.http.port}}' -HIVE_SERVER_INTERACTIVE_TRANSPORT_MODE_KEY = '{{hive-site/hive.server2.transport.mode}}' +HIVE_SERVER_INTERACTIVE_TRANSPORT_MODE_KEY = '{{hive-interactive-site/hive.server2.transport.mode}}' SECURITY_ENABLED_KEY = '{{cluster-env/security_enabled}}' HIVE_SERVER2_INTERACTIVE_AUTHENTICATION_KEY = '{{hive-interactive-site/hive.server2.authentication}}' HIVE_SERVER2_AUTHENTICATION_KEY = '{{hive-site/hive.server2.authentication}}'
