From 94502a1fdf41451d43080e1596c7b491743039f2 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Wed, 19 Mar 2008 22:31:09 +0000
Subject: [PATCH] Fixed a issue created in revision 3977 where messages are printed twice when running some tools (import-ldif, verif y-index, etc...)
---
opends/src/server/org/opends/server/backends/jeb/DN2URI.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/backends/jeb/DN2URI.java b/opends/src/server/org/opends/server/backends/jeb/DN2URI.java
index ce3c4c5..114f4af 100644
--- a/opends/src/server/org/opends/server/backends/jeb/DN2URI.java
+++ b/opends/src/server/org/opends/server/backends/jeb/DN2URI.java
@@ -59,7 +59,7 @@
import static org.opends.server.util.ServerConstants.ATTR_REFERRAL_URL;
import static org.opends.server.loggers.debug.DebugLogger.*;
import static org.opends.messages.JebMessages.
- INFO_JEB_REFERRAL_RESULT_MESSAGE;
+ NOTE_JEB_REFERRAL_RESULT_MESSAGE;
/**
* This class represents the referral database which contains URIs from referral
* entries. The key is the DN of the referral entry and the value is that of a
@@ -517,7 +517,7 @@
// Throw a directory referral exception containing the URIs.
Message msg =
- INFO_JEB_REFERRAL_RESULT_MESSAGE.get(String.valueOf(referralDN));
+ NOTE_JEB_REFERRAL_RESULT_MESSAGE.get(String.valueOf(referralDN));
throw new DirectoryException(
ResultCode.REFERRAL, msg, referralDN, URIList, null);
}
--
Gitblit v1.10.0