Repository: ambari Updated Branches: refs/heads/trunk 8d56db0ef -> 40319b38f
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/40319b38 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/40319b38 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/40319b38 Branch: refs/heads/trunk Commit: 40319b38faa0a8c12fe80009d3571daae41545d4 Parents: 8d56db0 Author: Sumit Mohanty <[email protected]> Authored: Mon Jan 30 11:36:52 2017 -0800 Committer: Sumit Mohanty <[email protected]> Committed: Mon Jan 30 11:36:52 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/40319b38/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}}'
