Repository: ambari Updated Branches: refs/heads/branch-1.7.0 12769f93a -> 2beca1023
AMBARI-8036 History Server fails to start on Ubuntu (dsen) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/2beca102 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/2beca102 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/2beca102 Branch: refs/heads/branch-1.7.0 Commit: 2beca1023368b049dde2b2af9bf293cc294c5b0f Parents: 12769f9 Author: Dmytro Sen <[email protected]> Authored: Thu Oct 30 17:29:20 2014 +0200 Committer: Dmytro Sen <[email protected]> Committed: Thu Oct 30 17:29:20 2014 +0200 ---------------------------------------------------------------------- .../libraries/functions/dynamic_variable_interpretation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/2beca102/ambari-common/src/main/python/resource_management/libraries/functions/dynamic_variable_interpretation.py ---------------------------------------------------------------------- diff --git a/ambari-common/src/main/python/resource_management/libraries/functions/dynamic_variable_interpretation.py b/ambari-common/src/main/python/resource_management/libraries/functions/dynamic_variable_interpretation.py index 4410fef..9049f50 100644 --- a/ambari-common/src/main/python/resource_management/libraries/functions/dynamic_variable_interpretation.py +++ b/ambari-common/src/main/python/resource_management/libraries/functions/dynamic_variable_interpretation.py @@ -147,7 +147,7 @@ def copy_tarballs_to_hdfs(tarball_prefix, component_user, file_owner, group_owne get_hdp_version_cmd = "/usr/bin/hdp-select versions" code, out = shell.call(get_hdp_version_cmd) if code != 0 or not out.startswith(params.hdp_stack_version): - Logger.Warning("Could not verify HDP version by calling '%s'. Return Code: %s, Output: %s." % + Logger.warning("Could not verify HDP version by calling '%s'. Return Code: %s, Output: %s." % (get_hdp_version_cmd, str(code), str(out))) return 1
