From a733cedcf54ab0b979f7f1b762d086e49bd59d72 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Tue, 27 Oct 2009 09:34:04 +0000
Subject: [PATCH] Fix for issue 4316 : Replication takes too much time to shutdown
---
opends/src/server/org/opends/server/replication/server/DbHandler.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/server/DbHandler.java b/opends/src/server/org/opends/server/replication/server/DbHandler.java
index 96a48b7..c92f881 100644
--- a/opends/src/server/org/opends/server/replication/server/DbHandler.java
+++ b/opends/src/server/org/opends/server/replication/server/DbHandler.java
@@ -321,9 +321,9 @@
}
shutdown = true;
- synchronized (this)
+ synchronized (msgQueue)
{
- this.notifyAll();
+ msgQueue.notifyAll();
}
synchronized (this)
--
Gitblit v1.10.0