From 4fd152ec8ba98ac9a70202dbac2b3a579df1033a Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Mon, 10 Jun 2013 14:25:54 +0000
Subject: [PATCH] Fix OPENDJ-951: Reduce size and frequency of replication MonitorMsg

---
 opends/src/server/org/opends/server/replication/protocol/ProtocolVersion.java |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/protocol/ProtocolVersion.java b/opends/src/server/org/opends/server/replication/protocol/ProtocolVersion.java
index 377fea2..b8b834b 100644
--- a/opends/src/server/org/opends/server/replication/protocol/ProtocolVersion.java
+++ b/opends/src/server/org/opends/server/replication/protocol/ProtocolVersion.java
@@ -81,9 +81,15 @@
   public static final short REPLICATION_PROTOCOL_V6 = 6;
 
   /**
+   * The constant for the 7th version of the replication protocol.
+   * - compact encoding for length, CSNs, and server IDs.
+   */
+  public static final short REPLICATION_PROTOCOL_V7 = 7;
+
+  /**
    * The replication protocol version used by the instance of RS/DS in this VM.
    */
-  private static final short CURRENT_VERSION = REPLICATION_PROTOCOL_V6;
+  private static final short CURRENT_VERSION = REPLICATION_PROTOCOL_V7;
 
   /**
    * Gets the current version of the replication protocol.

--
Gitblit v1.10.0