summaryrefslogtreecommitdiffstats
path: root/keystone/identity
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-15 06:36:10 +0000
committerGerrit Code Review <review@openstack.org>2013-06-15 06:36:10 +0000
commit3c687d17016cb8efcfdce2de0d2f923121917fcb (patch)
tree9486083cc2d945f778d6c2bceea242e68a1c580b /keystone/identity
parente026a6c53e3edb12c42d990c8e4e867b6dce8dcf (diff)
parentbba4ea7177d3f943e763bde88538f1085a854e30 (diff)
downloadkeystone-3c687d17016cb8efcfdce2de0d2f923121917fcb.tar.gz
keystone-3c687d17016cb8efcfdce2de0d2f923121917fcb.tar.xz
keystone-3c687d17016cb8efcfdce2de0d2f923121917fcb.zip
Merge "Correct the default name attribute for role"
Diffstat (limited to 'keystone/identity')
-rw-r--r--keystone/identity/backends/ldap/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/identity/backends/ldap/core.py b/keystone/identity/backends/ldap/core.py
index 5a65ead5..89ecd06e 100644
--- a/keystone/identity/backends/ldap/core.py
+++ b/keystone/identity/backends/ldap/core.py
@@ -632,7 +632,7 @@ class RoleApi(common_ldap.BaseLdap, ApiShimMixin):
DEFAULT_ATTRIBUTE_IGNORE = []
NotFound = exception.RoleNotFound
options_name = 'role'
- attribute_mapping = {'name': 'cn',
+ attribute_mapping = {'name': 'ou',
#'serviceId': 'service_id',
}
model = models.Role