mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
20.00.2013 5311778ad045cbc64fddbdaa367f7cb4d3853f98
opends/src/server/org/opends/server/replication/server/changelog/je/ChangeNumberIndexer.java
@@ -176,7 +176,7 @@
   */
  public void publishHeartbeat(DN baseDN, CSN heartbeatCSN)
  {
    if (isExcludedFromECL(baseDN))
    if (MultimasterReplication.isECLDisabledDomain(baseDN))
    {
      return;
    }
@@ -198,7 +198,7 @@
  public void publishUpdateMsg(DN baseDN, UpdateMsg updateMsg)
      throws ChangelogException
  {
    if (isExcludedFromECL(baseDN))
    if (MultimasterReplication.isECLDisabledDomain(baseDN))
    {
      return;
    }
@@ -210,12 +210,6 @@
    tryNotify(baseDN);
  }
  private boolean isExcludedFromECL(DN baseDN)
  {
    Set<String> excludedDNs = MultimasterReplication.getECLDisabledDomains();
    return excludedDNs.contains(baseDN.toNormalizedString());
  }
  /**
   * Returns the last time each serverId was seen alive for the specified
   * replication domain.