Repository: ambari Updated Branches: refs/heads/branch-feature-AMBARI-12556 7a7f489bc -> 245afc1b4
AMBARI-21101. HDP 3.0 install fails due to 'Script' has no attribute 'get_force_https_protocol' because function was renamed (echekanskiy) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/7bb2aba5 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/7bb2aba5 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/7bb2aba5 Branch: refs/heads/branch-feature-AMBARI-12556 Commit: 7bb2aba5cc67e65e586352efdf307cf67dbfd416 Parents: 90abffd Author: Eugene Chekanskiy <[email protected]> Authored: Wed May 24 18:25:32 2017 +0300 Committer: Eugene Chekanskiy <[email protected]> Committed: Wed May 24 18:25:32 2017 +0300 ---------------------------------------------------------------------- .../common-services/HDFS/3.0.0.3.0/package/scripts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/7bb2aba5/ambari-server/src/main/resources/common-services/HDFS/3.0.0.3.0/package/scripts/utils.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/HDFS/3.0.0.3.0/package/scripts/utils.py b/ambari-server/src/main/resources/common-services/HDFS/3.0.0.3.0/package/scripts/utils.py index ab4308c..53774c6 100644 --- a/ambari-server/src/main/resources/common-services/HDFS/3.0.0.3.0/package/scripts/utils.py +++ b/ambari-server/src/main/resources/common-services/HDFS/3.0.0.3.0/package/scripts/utils.py @@ -38,7 +38,7 @@ from resource_management.libraries.script.script import Script from ambari_commons.inet_utils import ensure_ssl_using_protocol from zkfc_slave import ZkfcSlaveDefault -ensure_ssl_using_protocol(Script.get_force_https_protocol()) +ensure_ssl_using_protocol(Script.get_force_https_protocol_name()) def safe_zkfc_op(action, env): """
