From 03f5d1bc3610d8f891bdf407ec3fbfbc2f16d524 Mon Sep 17 00:00:00 2001
From: Maxim Thomas <maxim.thomas@gmail.com>
Date: Tue, 03 Feb 2026 14:05:47 +0000
Subject: [PATCH] Fix three and more nodes replication process stuck error (#584)
---
opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java | 10 +---------
1 files changed, 1 insertions(+), 9 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java
index 9c5bed7..8781e70 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java
@@ -13,7 +13,7 @@
*
* Copyright 2008-2010 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
- * Portions Copyright 2025 3A Systems LLC.
+ * Portions Copyright 2025-2026 3A Systems LLC.
*/
package org.opends.server.replication.service;
@@ -42,7 +42,6 @@
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
-import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
@@ -3031,13 +3030,6 @@
{
broker.stop();
}
- try {
- exportThreadPool.shutdown();
- boolean timedOut = exportThreadPool.awaitTermination(100, TimeUnit.SECONDS);
- logger.info(LocalizableMessage.raw("export pool termination timed out: " + timedOut));
- } catch (InterruptedException e) {
- // Give up waiting.
- }
// Stop the listener thread
if (listenerThread != null)
--
Gitblit v1.10.0