From 87de2a2f4a358369a974511b477fe63f1d432177 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Tue, 10 Mar 2009 16:58:06 +0000
Subject: [PATCH] Fix for 3764 : Changing the replication configuration during a total update hangs

---
 opendj-sdk/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java b/opendj-sdk/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
index 8c67c5d..883ae97 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
@@ -2656,7 +2656,7 @@
    * @return A boolean indicating if a total update import is currently
    *         in Progress.
    */
-  boolean importInProgress()
+  public boolean importInProgress()
   {
     if (ieContext == null)
       return false;
@@ -2671,7 +2671,7 @@
    * @return A boolean indicating if a total update export is currently
    *         in Progress.
    */
-  boolean exportInProgress()
+  public boolean exportInProgress()
   {
     if (ieContext == null)
       return false;

--
Gitblit v1.10.0