From b9aad30c9e07b179a2c22fad830f6a54b8993bc9 Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Wed, 18 Aug 2010 13:27:32 +0000
Subject: [PATCH] First pass on solving issue #514, reducing Replication meta data, especially aged information. The default is to keep the replication meta data (historical information) for at least 1 day. Purging occurs on the fly when entries are modified, or via a task. Launching the task will be available through dsreplication in separate commit. 

---
 opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java
index 9bfc700..e00d04c 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java
@@ -492,4 +492,18 @@
   {
     return true;
   }
+  
+  /**
+   * Gets the "conflicts-historical-purge-delay" property.
+   * <p>
+   * This delay indicates the time (in minutes) the domain keeps the
+   * historical information necessary to solve conflicts.
+   *
+   * @return Returns the value of the "conflicts-historical-purge-delay" property.
+   **/
+  public long getConflictsHistoricalPurgeDelay()
+  {
+    return 1440;
+  }
+
 }

--
Gitblit v1.10.0