From 6aee0b088e10e3b5a525cff854faf471d99d1471 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

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

diff --git a/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java b/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
index 8c67c5d..883ae97 100644
--- a/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
+++ b/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