From 3a5116b0fb968711531c50d243d94d2cdfd664be Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Tue, 15 Jun 2010 14:43:34 +0000
Subject: [PATCH] Enhance replication conflict attributes comparator, enable/disable replication domain, and some error message for diagnostic
---
opends/src/server/org/opends/server/replication/service/ReplicationBroker.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java b/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java
index 32a4d33..a4ca80e 100644
--- a/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java
+++ b/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java
@@ -865,6 +865,7 @@
// Get info from every available replication servers
replicationServerInfos = collectReplicationServersInfo();
+ String rsis = replicationServerInfos.toString();
ReplicationServerInfo replicationServerInfo = null;
@@ -1057,7 +1058,7 @@
connectionError = true;
connectPhaseLock.notify();
Message message =
- NOTE_COULD_NOT_FIND_CHANGELOG.get(baseDn.toString());
+ NOTE_COULD_NOT_FIND_CHANGELOG.get(baseDn.toString(), rsis);
logError(message);
}
}
--
Gitblit v1.10.0