Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,11 @@ public void namingConflicts() throws Exception

assertNull(getEntry(personWithUUIDEntry.getName(), 10000, false),
"The DELETE replication message was not replayed");
assertNull(getEntry(personWithSecondUniqueID.getName(), 10000, false),
// The second entry was created with the same DN as the first one, so waiting
// on that DN again returns as soon as the first delete is replayed. Wait on
// the DN the naming conflict renamed it to instead: the second delete then
// has resolved its conflict, and counted it, before the monitor is read below.
assertNull(getEntry(dn2, 10000, false),
"The DELETE replication message was not replayed");
/*
* Check that and added entry is correctly added below it's
Expand Down
Loading