From 752796a6d7d7b89c3deab6dfda110857ef96ea25 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Mon, 14 Oct 2024 15:46:36 +0200 Subject: [PATCH] website/docs: fix SkipObject exception (#11632) --- website/docs/users-sources/sources/protocols/ldap/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/users-sources/sources/protocols/ldap/index.md b/website/docs/users-sources/sources/protocols/ldap/index.md index 449b3b71b8..43a8d1635d 100644 --- a/website/docs/users-sources/sources/protocols/ldap/index.md +++ b/website/docs/users-sources/sources/protocols/ldap/index.md @@ -110,11 +110,11 @@ The following variables are available to LDAPĀ source property mappings: ### Additional expression semantics -If you need to skip synchronization for a specific object, you can raise the `StopSync` exception: +If you need to skip synchronization for a specific object, you can raise the `SkipObject` exception: ```python if ldap.get("cn") == "doNotSync": - raise StopSync + raise SkipObject ``` ## Password login