From 617fe1eab356125bc82c7bac69a322f5a29fbdc8 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Mon, 20 Dec 2010 21:07:50 +0000
Subject: [PATCH] Fix for OPENDJ-3 - persistent search option for cn=changelog The persistent search option for cn=changelog was only working with specific options that are not the default ones. More specifically, it wouldn't work in ChangesOnly mode (returning error 53: Unwilling to perform). Those changes are resolving the issues, fix a typo in a comment and changed code order and test to avoid double negatives.
---
opends/src/server/org/opends/server/replication/protocol/StartECLSessionMsg.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/protocol/StartECLSessionMsg.java b/opends/src/server/org/opends/server/replication/protocol/StartECLSessionMsg.java
index dc572e3..050b6d9 100644
--- a/opends/src/server/org/opends/server/replication/protocol/StartECLSessionMsg.java
+++ b/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;
--
Gitblit v1.10.0