summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-09-10 16:10:30 -0400
committerRob Crittenden <rcritten@redhat.com>2009-09-14 09:46:39 -0400
commiteca7cdc94a8377237533259755a19b75c313bd99 (patch)
treee055c6ac84f3ada3254837e084a0c77d73e06a6f /ipaserver
parent2c3bca7e7435cf8c24f8af12cd4572830084004c (diff)
downloadfreeipa-eca7cdc94a8377237533259755a19b75c313bd99.tar.gz
freeipa-eca7cdc94a8377237533259755a19b75c313bd99.tar.xz
freeipa-eca7cdc94a8377237533259755a19b75c313bd99.zip
Raise more specific error when an Objectclass Violation occurs Fix the virtual plugin to work with the new backend
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/plugins/ldap2.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipaserver/plugins/ldap2.py b/ipaserver/plugins/ldap2.py
index 639552b26..c854dac28 100644
--- a/ipaserver/plugins/ldap2.py
+++ b/ipaserver/plugins/ldap2.py
@@ -99,6 +99,8 @@ def _handle_errors(e, **kw):
# it indicates the previous attribute was removed by another
# update, making the oldentry stale.
raise errors.MidairCollision()
+ except _ldap.OBJECT_CLASS_VIOLATION:
+ raise errors.ObjectclassViolation(info=info)
except _ldap.ADMINLIMIT_EXCEEDED, e:
raise errors.LimitsExceeded()
except _ldap.SIZELIMIT_EXCEEDED, e: