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; 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 { 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)) {