From 6aaed6d8ba0bc5336f365123e152f846f1c610a3 Mon Sep 17 00:00:00 2001 From: gbellato <gbellato@localhost> Date: Thu, 03 May 2007 09:44:32 +0000 Subject: [PATCH] As a temporary workaround for issue 612, change the number of threads used by the replication from 10 to 1 so that when replaying operations they are always successfull even if they have dependencies. --- opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java b/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java index 2bf821f..53f3547 100644 --- a/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java +++ b/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java @@ -245,7 +245,7 @@ private ConfigEntry backendConfigEntry; private List<DN> branches = new ArrayList<DN>(0); - private int listenerThreadNumber = 10; + private int listenerThreadNumber = 1; private boolean receiveStatus = true; private Collection<String> replicationServers; -- Gitblit v1.10.0