From 5602a87f10fa0eec17e77b3526688bf4b3184d02 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 09 Nov 2006 15:00:03 +0000
Subject: [PATCH] Fix a problem in which the same message ID was used for both the MSGID_JEB_CONFIG_ATTR_REQUIRES_RESTART and the MSGID_JEB_VERIFY_CACHE_AND_MEMORY_REPORT message values.
---
opends/src/server/org/opends/server/messages/JebMessages.java | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/JebMessages.java b/opends/src/server/org/opends/server/messages/JebMessages.java
index d7941f0..f7892f7 100644
--- a/opends/src/server/org/opends/server/messages/JebMessages.java
+++ b/opends/src/server/org/opends/server/messages/JebMessages.java
@@ -1057,16 +1057,6 @@
/**
- * The message ID used to indicate that a configuration attribute change
- * will not take effect until the backend is restarted. This message
- * takes one argument, the name of the configuration attribute.
- */
- public static final int MSGID_JEB_CONFIG_ATTR_REQUIRES_RESTART =
- CATEGORY_MASK_JEB | SEVERITY_MASK_INFORMATIONAL | 110;
-
-
-
- /**
* The message ID used to log an informational message in the verify index
* process. This message takes two arguments, the current amount of free heap
* memory in megabytes, and the floating point number of database cache misses
@@ -1255,6 +1245,16 @@
public static final int MSGID_JEB_GET_ENTRY_COUNT_FAILED =
CATEGORY_MASK_JEB | SEVERITY_MASK_SEVERE_WARNING | 129;
+
+
+ /**
+ * The message ID used to indicate that a configuration attribute change
+ * will not take effect until the backend is restarted. This message
+ * takes one argument, the name of the configuration attribute.
+ */
+ public static final int MSGID_JEB_CONFIG_ATTR_REQUIRES_RESTART =
+ CATEGORY_MASK_JEB | SEVERITY_MASK_INFORMATIONAL | 130;
+
/**
* Associates a set of generic messages with the message IDs defined in this
* class.
--
Gitblit v1.10.0