Repository: ambari Updated Branches: refs/heads/trunk badf77f45 -> f9977c269
AMBARI-11331 correct values not displayed for hive.exec.orc.default.stripe.size (dsen) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/f9977c26 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/f9977c26 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/f9977c26 Branch: refs/heads/trunk Commit: f9977c2699b9304b20ea882f9812372779ebe949 Parents: badf77f Author: Dmytro Sen <[email protected]> Authored: Fri May 22 16:44:11 2015 +0300 Committer: Dmytro Sen <[email protected]> Committed: Fri May 22 16:44:11 2015 +0300 ---------------------------------------------------------------------- .../src/main/resources/stacks/HDP/2.2/services/stack_advisor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/f9977c26/ambari-server/src/main/resources/stacks/HDP/2.2/services/stack_advisor.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.2/services/stack_advisor.py b/ambari-server/src/main/resources/stacks/HDP/2.2/services/stack_advisor.py index 4e84a75..d9f0778 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.2/services/stack_advisor.py +++ b/ambari-server/src/main/resources/stacks/HDP/2.2/services/stack_advisor.py @@ -851,7 +851,7 @@ class HDP22StackAdvisor(HDP21StackAdvisor): stripe_size_property = "hive.exec.orc.default.stripe.size" if int(properties[stripe_size_property]) not in stripe_size_values: validationItems.append({"config-name": stripe_size_property, - "item": self.getWarnItem("Correct values are ") + "item": self.getWarnItem("Correct values are {0}".format(stripe_size_values)) } ) return self.toConfigurationValidationProblems(validationItems, "hive-site")
