From 9d1bd29ee527b598f0e91a9d02920eaacb3f767d Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Wed, 07 May 2014 09:27:48 +0000
Subject: [PATCH] OPENDJ-1388 – Implement simple changelog db based on single log file
---
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/GenerationIdTest.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/GenerationIdTest.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/GenerationIdTest.java
index 329231c..f6c43fe 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/GenerationIdTest.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/GenerationIdTest.java
@@ -329,7 +329,7 @@
int rsPort = getRSPort(replServerId);
String rsDir = "generationIdTest" + replServerId + testCase + "Db";
ReplServerFakeConfiguration conf =
- new ReplServerFakeConfiguration(rsPort, rsDir, 0, replServerId, 0, 100, servers);
+ new ReplServerFakeConfiguration(rsPort, rsDir, replicationDbImplementation, 0, replServerId, 0, 100, servers);
ReplicationServer replicationServer = new ReplicationServer(conf);
Thread.sleep(1000);
return replicationServer;
@@ -557,7 +557,8 @@
*/
private void checkChangelogSize(int expectedCount, int timeout) throws Exception
{
- throw new RuntimeException("Dead code. Should we remove this method and the test calling it?");
+ // TODO : commented this throw because test is executed through a slow test
+ //throw new RuntimeException("Dead code. Should we remove this method and the test calling it?");
}
/**
--
Gitblit v1.10.0