You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sr...@apache.org on 2015/04/29 08:44:14 UTC

ambari git commit: AMBARI-10751. Multiple changes to YARN enhanced configs - typo fix (srimanth)

Repository: ambari
Updated Branches:
  refs/heads/trunk 98098a891 -> 06c7233d3


AMBARI-10751. Multiple changes to YARN enhanced configs - typo fix (srimanth)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/06c7233d
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/06c7233d
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/06c7233d

Branch: refs/heads/trunk
Commit: 06c7233d36cfd7d9f1f4a14a9b62d4b2ebb1692f
Parents: 98098a8
Author: Srimanth Gunturi <sg...@hortonworks.com>
Authored: Tue Apr 28 23:43:56 2015 -0700
Committer: Srimanth Gunturi <sg...@hortonworks.com>
Committed: Tue Apr 28 23:43:56 2015 -0700

----------------------------------------------------------------------
 .../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/06c7233d/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 7ce98b9..c3af09b 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
@@ -825,7 +825,7 @@ class HDP22StackAdvisor(HDP21StackAdvisor):
     if "yarn_cgroups_enabled" in properties:
       yarn_cgroups_enabled = properties["yarn_cgroups_enabled"].lower() == "true"
       core_site_properties = getSiteProperties(configurations, "core-site")
-      security_enbaled = False
+      security_enabled = False
       if core_site_properties:
         security_enabled = core_site_properties['hadoop.security.authentication'] == 'kerberos' and core_site_properties['hadoop.security.authorization'] == 'true'
       if not security_enabled and yarn_cgroups_enabled: