You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ta...@apache.org on 2014/01/06 10:21:53 UTC

git commit: updated refs/heads/4.3 to 69cb7de

Updated Branches:
  refs/heads/4.3 665d036e8 -> 69cb7de34


CLOUDSTACK-5625: removed unnecessary global setting 'ldap.realname.attribute'


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/69cb7de3
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/69cb7de3
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/69cb7de3

Branch: refs/heads/4.3
Commit: 69cb7de34d9a0d87bf61a753dee05c6f5a798fcb
Parents: 665d036
Author: SrikanteswaraRao Talluri <ta...@apache.org>
Authored: Mon Jan 6 14:50:46 2014 +0530
Committer: SrikanteswaraRao Talluri <ta...@apache.org>
Committed: Mon Jan 6 14:51:33 2014 +0530

----------------------------------------------------------------------
 test/integration/component/test_ldap.py | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/69cb7de3/test/integration/component/test_ldap.py
----------------------------------------------------------------------
diff --git a/test/integration/component/test_ldap.py b/test/integration/component/test_ldap.py
index 83f970b..d9e7c35 100644
--- a/test/integration/component/test_ldap.py
+++ b/test/integration/component/test_ldap.py
@@ -54,7 +54,6 @@ class Services:
                 {
                 "basedn": "dc=cloudstack,dc=org",
                 "emailAttribute": "mail",
-                "realnameAttribute": "cn",
                 "userObject": "inetOrgPerson",
                 "usernameAttribute": "uid",
                 "hostname": "localhost",
@@ -179,14 +178,6 @@ class TestLdap(cloudstackTestCase):
         updateConfigurationResponse = self.apiClient.updateConfiguration(updateConfigurationCmd)
         self.debug("updated the parameter %s with value %s"%(updateConfigurationResponse.name, updateConfigurationResponse.value))
 
-
-        updateConfigurationCmd = updateConfiguration.updateConfigurationCmd()
-        updateConfigurationCmd.name = "ldap.realname.attribute"
-        updateConfigurationCmd.value = ldapConfiguration['realnameAttribute']
-        updateConfigurationResponse = self.apiClient.updateConfiguration(updateConfigurationCmd)
-        self.debug("updated the parameter %s with value %s"%(updateConfigurationResponse.name, updateConfigurationResponse.value))
-
-
         updateConfigurationCmd = updateConfiguration.updateConfigurationCmd()
         updateConfigurationCmd.name = "ldap.user.object"
         updateConfigurationCmd.value = ldapConfiguration['userObject']