From c08575b5d155b34529c402d7e5398e77abc49117 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Mon, 20 Aug 2007 08:04:16 +0000
Subject: [PATCH] These changes rovides the ability to repair the consistency in the replication topology in the (hopefully) rare case when hardware failure or software bugs could break it (issue 788 and 791)
---
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java | 27 ---------------------------
1 files changed, 0 insertions(+), 27 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java
index 0a5dbef..4c6c666 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java
@@ -322,33 +322,6 @@
*/
protected void configureReplication() throws Exception
{
- // Add the Multimaster replication plugin
- String synchroPluginLdif = "dn: " + synchroPluginStringDN + "\n"
- + "objectClass: top\n"
- + "objectClass: ds-cfg-synchronization-provider\n"
- + "objectClass: ds-cfg-multimaster-synchronization-provider\n"
- + "ds-cfg-synchronization-provider-enabled: true\n"
- + "ds-cfg-synchronization-provider-class: " +
- "org.opends.server.replication.plugin.MultimasterReplication\n";
- Entry synchroPluginEntry = TestCaseUtils.entryFromLdifString(synchroPluginLdif);
- DirectoryServer.getConfigHandler().addEntry(synchroPluginEntry, null);
- configEntryList.add(synchroPluginEntry.getDN());
- assertNotNull(DirectoryServer.getConfigEntry(DN
- .decode(synchroPluginStringDN)),
- "Unable to add the Multimaster replication plugin");
-
- // domains container entry.
- String domainsLdif = "dn: "
- + "cn=domains," + synchroPluginStringDN + "\n"
- + "objectClass: top\n"
- + "objectClass: ds-cfg-branch\n";
- Entry domainsEntry = TestCaseUtils.entryFromLdifString(domainsLdif);
- DirectoryServer.getConfigHandler().addEntry(domainsEntry, null);
- configEntryList.add(domainsEntry.getDN());
- assertNotNull(DirectoryServer.getConfigEntry(
- DN.decode(synchroPluginStringDN)),
- "Unable to add the Multimaster replication plugin");
-
if (replServerEntry != null)
{
// Add the replication server
--
Gitblit v1.10.0