https://bugs.openldap.org/show_bug.cgi?id=4685
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution|--- |WONTFIX
--- Comment #9 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
The auditlog overlay generates something quite similar, and there's little
value in supporting this at this point.
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=4656
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=4656
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution|--- |WONTFIX
--- Comment #17 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
The auditlog overlay generates something quite similar, and there's little
value in supporting this at this point.
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=9054
--- Comment #6 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
trunk:
Commits:
• d5ed7c50
by Howard Chu at 2020-08-28T11:09:25+01:00
ITS#9054, #9318 document new TLS options in slapd
RE24:
Commits:
• cfc231a5
by Howard Chu at 2020-08-28T15:27:59+00:00
ITS#9054, #9318 document new TLS options in slapd
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=9135
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|2.5.0 |2.4.52
Resolution|TEST |FIXED
--- Comment #3 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Commits:
• ce6d302c
by Howard Chu at 2020-08-28T01:30:53+00:00
ITS#9135 fix index error on collapsed range
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=9054
--- Comment #5 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
head:
Commits:
• 53676779
by Howard Chu at 2020-08-27T11:22:58+01:00
ITS#9054 fix typo
RE24:
Commits:
• d2139d5c
by Howard Chu at 2020-08-27T15:05:46+00:00
ITS#9054 fix typo
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8725
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |TEST
Status|UNCONFIRMED |RESOLVED
Keywords|OL_2_5_REQ |
--- Comment #6 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Sigh, wrong commit in the message, but:
Commits:
• 8d312196
by Quanah Gibson-Mount at 2020-08-26T21:55:39+00:00
More for ITS#8845, skip cleanup on async op with extended operations
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8725
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |OL_2_5_REQ
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8725
--- Comment #5 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Note: Adjust debug statement there for head/RE25. ;)
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8725
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|TEST |---
Status|RESOLVED |UNCONFIRMED
Ever confirmed|1 |0
--- Comment #4 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
This seems to be missing the following necessary change:
diff --git a/servers/slapd/extended.c b/servers/slapd/extended.c
index 2b55438..59624f7 100644
--- a/servers/slapd/extended.c
+++ b/servers/slapd/extended.c
@@ -176,6 +176,12 @@ do_extended(
op->o_bd = frontendDB;
rs->sr_err = frontendDB->be_extended( op, rs );
+ if ( rs->sr_err == SLAPD_ASYNCOP ){
+ /* skip cleanup */
+ Debug( LDAP_DEBUG_TRACE, "do_extended: skipping cleanup for
ASYNCOP\n", 0, 0, 0 );
+ return rs->sr_err;
+ }
+
/* clean up in case some overlay set them? */
if ( !BER_BVISNULL( &op->o_req_ndn ) ) {
if ( !BER_BVISNULL( &op->o_req_dn )
--
You are receiving this mail because:
You are on the CC list for the issue.