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

Ludovic Poitou
20.07.2010 0fd24deb2417b80f887d27aa7f2c18df5bfe4978
opendj-sdk/opends/src/server/org/opends/server/replication/protocol/StartECLSessionMsg.java
@@ -78,7 +78,7 @@
  /**
   * This specifies that the request on the ECL is a PERSISTENT search
   * with changesOnly = false.
   * with changesOnly = true.
   */
  public final static short PERSISTENT_CHANGES_ONLY = 2;
opendj-sdk/opends/src/server/org/opends/server/replication/server/ECLServerHandler.java
@@ -745,6 +745,7 @@
            StartECLSessionMsg.PERSISTENT_CHANGES_ONLY)
          {
            newDomainCtxt.startState = rsd.getEligibleState(eligibleCN, true);
            startStatesFromProvidedCookie.remove(rsd.getBaseDn());
          }
          else
          {
opendj-sdk/opends/src/server/org/opends/server/workflowelement/externalchangelog/ECLSearchOperation.java
@@ -545,12 +545,12 @@
          // If we're only interested in changes, then we don't actually want
          // to process the search now.
          if (!psearchControl.getChangesOnly())
            startECLSessionMsg.setPersistent(
                StartECLSessionMsg.PERSISTENT);
          else
          if (psearchControl.getChangesOnly())
            startECLSessionMsg.setPersistent(
                StartECLSessionMsg.PERSISTENT_CHANGES_ONLY);
          else
            startECLSessionMsg.setPersistent(
                StartECLSessionMsg.PERSISTENT);
        }
        else if (oid.equals(OID_LDAP_SUBENTRIES))
        {