From 5ec0cb08889c9f1a24fd4cc8b139dcdb942dd92a Mon Sep 17 00:00:00 2001
From: pgamba <pgamba@localhost>
Date: Fri, 14 Aug 2009 12:37:19 +0000
Subject: [PATCH] Support for External change log compatible with draft-good-ldap-changelog-04.txt , March 2003

---
 opendj-sdk/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java |    8 ++++++--
 1 files changed, 6 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 2272923..0c1e208 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
@@ -2292,13 +2292,16 @@
    * @param heartbeatInterval    The heartbeatInterval that should be used
    *                             to check the availability of the replication
    *                             servers.
+   * @param changetimeHeartbeatInterval  The interval used to send change
+   *                             time heartbeat to the replication server.
    *
    * @throws ConfigException     If the DirectoryServer configuration was
    *                             incorrect.
    */
   public void startPublishService(
       Collection<String> replicationServers, int window,
-      long heartbeatInterval) throws ConfigException
+      long heartbeatInterval, long changetimeHeartbeatInterval)
+  throws ConfigException
   {
     if (broker == null)
     {
@@ -2311,7 +2314,8 @@
           getGenerationID(),
           heartbeatInterval,
           new ReplSessionSecurity(),
-          getGroupId());
+          getGroupId(),
+          changetimeHeartbeatInterval);
 
       broker.start(replicationServers);
 

--
Gitblit v1.10.0