Repository: ambari Updated Branches: refs/heads/branch-2.5 0c7eac7e9 -> f24709863
AMBARI-18693. get_sysprep_skip_copy_tarballs_hdfs() always returns False (magyari_sandor) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/f2470986 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/f2470986 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/f2470986 Branch: refs/heads/branch-2.5 Commit: f24709863838019b1674f02386b3fc505326465a Parents: 0c7eac7 Author: Sandor Magyari <[email protected]> Authored: Fri Oct 28 17:52:59 2016 +0300 Committer: Sandor Magyari <[email protected]> Committed: Fri Oct 28 18:00:13 2016 +0300 ---------------------------------------------------------------------- .../python/resource_management/libraries/functions/copy_tarball.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/f2470986/ambari-common/src/main/python/resource_management/libraries/functions/copy_tarball.py ---------------------------------------------------------------------- diff --git a/ambari-common/src/main/python/resource_management/libraries/functions/copy_tarball.py b/ambari-common/src/main/python/resource_management/libraries/functions/copy_tarball.py index 0355685..519c88b 100644 --- a/ambari-common/src/main/python/resource_management/libraries/functions/copy_tarball.py +++ b/ambari-common/src/main/python/resource_management/libraries/functions/copy_tarball.py @@ -72,7 +72,7 @@ def get_sysprep_skip_copy_tarballs_hdfs(): # By default, copy the tarballs to HDFS. If the cluster is sysprepped, then set based on the config. sysprep_skip_copy_tarballs_hdfs = False if host_sys_prepped: - sysprep_skip_copy_tarballs_hdfs = default("/cluster-env/sysprep_skip_copy_tarballs_hdfs", False) + sysprep_skip_copy_tarballs_hdfs = default("/configurations/cluster-env/sysprep_skip_copy_tarballs_hdfs", False) return sysprep_skip_copy_tarballs_hdfs def get_tarball_paths(name, use_upgrading_version_during_upgrade=True, custom_source_file=None, custom_dest_file=None):
