Repository: ambari Updated Branches: refs/heads/trunk 2fa1ffb5f -> cb2b446da
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/cb2b446d Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/cb2b446d Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/cb2b446d Branch: refs/heads/trunk Commit: cb2b446da835aeb52049e36544dba170c9521bce Parents: 2fa1ffb Author: Dmytro Sen <[email protected]> Authored: Thu Oct 30 17:30:40 2014 +0200 Committer: Dmytro Sen <[email protected]> Committed: Thu Oct 30 17:30:40 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/cb2b446d/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
