Skip to content
Merged
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 @@ -13,6 +13,7 @@
*
* Copyright 2006-2010 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC.
*/
package org.opends.server.replication.server;

Expand Down Expand Up @@ -1722,6 +1723,14 @@ public long changeGenerationId(long generationId)

this.generationId = generationId;
this.generationIdSavedStatus = false;

// generationId gossip is purely event-driven: it only travels in the
// topology messages sent on connect/disconnect/status events. Re-advertise
// on every real transition so a peer that missed one converges on the next.
if (generationId > 0)
{
sendTopoInfoToAll();
}
}
return oldGenerationId;
}
Expand Down
Loading