https://bugs.openldap.org/show_bug.cgi?id=7102
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|2.5.1 |---
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=7102
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |WORKSFORME
Status|UNCONFIRMED |RESOLVED
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8541
--- Comment #9 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
err, test050. I'll see if I can reproduce
5584Using ldapsearch to read config from server 3...
5585ldapsearch failed at server 3 (255)!
5586./scripts/test050-syncrepl-multiprovider: 355: kill: No such process
5587>>>>> test050-syncrepl-multiprovider failed for mdb after 21 seconds
5588(exit 255)
5589make[2]: *** [Makefile:298: mdb-mod] Error 255
5590make[2]: Leaving directory '/builds/openldap/openldap/tests'
5591make[1]: *** [Makefile:284: test] Error 2
5592make[1]: Leaving directory '/builds/openldap/openldap/tests'
5593make: *** [Makefile:296: test] Error 2
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8541
--- Comment #8 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
test051 is now crashing
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=7102
--- Comment #4 from Howard Chu <hyc(a)openldap.org> ---
(In reply to Quanah Gibson-Mount from comment #3)
> may already be fixed, howard to investigate
Unable to reproduce. I tried with 2.4.29, as well as current master and 2.4.57.
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=6518
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution|--- |TEST
Keywords|replication, reviewed |
Target Milestone|2.6.0 |2.5.1
Assignee|bugs(a)openldap.org |ondra(a)mistotebe.net
Severity|enhancement |normal
--- Comment #5 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
partial fix, more incoming:
Commits:
• ac70b01b
by Ondřej Kuzník at 2021-02-01T16:43:06+00:00
ITS#6518 When using proxyauthz, replace existing control - (async)meta
Commits:
• 1aecfe0b
by Ondřej Kuzník at 2021-02-01T17:22:35+00:00
ITS#6518 Only remove proxyauthz control if we generated one ourselves
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=7766
--- Comment #12 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Commits:
• 4da575d4
by Ondřej Kuzník at 2021-02-01T16:51:56+00:00
ITS#7766 Fix previous commit
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=9179
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Keywords|reviewed |
Resolution|--- |TEST
--- Comment #4 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Commits:
• 20ec1289
by Ondřej Kuzník at 2021-02-01T14:22:45+00:00
ITS#9179 Always use effective identity when proxying
• 4a02ae13
by Ondřej Kuzník at 2021-02-01T16:04:52+00:00
ITS#6518 When using proxyauthz, replace existing control
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8541
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|2.4.53 |2.5.1
Keywords|OL_2_5_REQ, reviewed |
--- Comment #7 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
commit 0da38889e1c224e310d3039db7791fcc69fee6e5
Author: Howard Chu <hyc(a)openldap.org>
Date: Sun Jan 31 15:21:55 2021 +0000
ITS#8541 fix data race in syncprov removal
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=9447
Issue ID: 9447
Summary: Defining MDB_DEBUG has no effect
Product: LMDB
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: ---
Component: liblmdb
Assignee: bugs(a)openldap.org
Reporter: Per.Mildner(a)ri.se
Target Milestone: ---
I tried to compile mdb.c with -DMDB_DEBUG=2 to get some debug output, but
nothing was written.
Looking at mdb.c it looks as if the code block that sets the mdb_debug static
flag should be moved to above the line that does txn->mt_txnid++; (since
mt_txnid is unsigned and mdb_debug_start starts out as zero and is never
changed, so txn->mt_txnid+1 would never be zero unless it wraps around or is
initialized to (size_t)-1 somewhere).
Moving the code block does indeed cause a lot of debug messages to be written.
This is lmdb 5b75edb6337b28669c1370bc33442e272e72f91a but looking at the git
history it looks as if the code has been the same since mdb_debug was
introduced so perhaps the code never worked.
The code at
https://git.openldap.org/openldap/openldap/-/blob/master/libraries/liblmdb/…
looks like:
txn->mt_txnid++;
#if MDB_DEBUG
if (txn->mt_txnid == mdb_debug_start)
mdb_debug = 1;
#endif
(I am new to the code and to lmdb so apologies if I missed something obvious.)
--
You are receiving this mail because:
You are on the CC list for the issue.