From 2b90d968d139530054b8b0f29924f5bfc49f767d Mon Sep 17 00:00:00 2001
From: fdorson <fdorson@localhost>
Date: Tue, 11 Mar 2008 14:14:54 +0000
Subject: [PATCH] Fix for 1873 : ServerState should be updated after a server crash
---
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java | 4 ++--
1 files changed, 2 insertions(+), 2 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 949e982..4fba9f1 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
@@ -193,7 +193,7 @@
{
ServerState state;
if (emptyOldChanges)
- state = new PersistentServerState(baseDn);
+ state = new PersistentServerState(baseDn, serverId);
else
state = new ServerState();
@@ -297,7 +297,7 @@
{
ServerState state;
if (emptyOldChanges)
- state = new PersistentServerState(baseDn);
+ state = new PersistentServerState(baseDn, serverId);
else
state = new ServerState();
--
Gitblit v1.10.0