mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#9596 Request only DN for now
This commit is contained in:
parent
0d6e0ead6a
commit
33fc2478dd
2 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ class Database:
|
|||
conn.simple_bind_s("cn=config", server.secret)
|
||||
|
||||
# We're just after the generated DN, no other attributes at the moment
|
||||
control = PostReadControl(True, [])
|
||||
control = PostReadControl(True, ["1.1"])
|
||||
|
||||
_, _, _, ctrls = conn.add_ext_s(
|
||||
f"olcDatabase={backend},cn=config", list(self._entry().items()),
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class Overlay:
|
|||
server.load_module(overlay)
|
||||
|
||||
# We're just after the generated DN, no other attributes at the moment
|
||||
control = PostReadControl(True, [])
|
||||
control = PostReadControl(True, ["1.1"])
|
||||
|
||||
_, _, _, ctrls = conn.add_ext_s(
|
||||
f"olcOverlay={overlay_name},{database.dn}",
|
||||
|
|
|
|||
Loading…
Reference in a new issue