From 2fa7a955ea1b9132f6bcfcce18f2979b31085734 Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Tue, 04 Feb 2025 11:10:47 +0000
Subject: [PATCH] IT ReplicationDomainTest upper waitEndExport timeout (#476)

---
 opendj-server-legacy/src/test/java/org/opends/server/replication/service/ReplicationDomainTest.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/opendj-server-legacy/src/test/java/org/opends/server/replication/service/ReplicationDomainTest.java b/opendj-server-legacy/src/test/java/org/opends/server/replication/service/ReplicationDomainTest.java
index 11dfa45..0ef61bf 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/replication/service/ReplicationDomainTest.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/replication/service/ReplicationDomainTest.java
@@ -13,6 +13,7 @@
  *
  * Copyright 2008-2010 Sun Microsystems, Inc.
  * Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2025 3A Systems,LLC.
  */
 package org.opends.server.replication.service;
 
@@ -442,7 +443,7 @@
   private void waitEndExport(String exportedData, StringBuilder importedData) throws Exception
   {
     int count = 0;
-    while (importedData.length() < exportedData.length() && count < 500)
+    while (importedData.length() < exportedData.length() && count < 500*5)
     {
       count ++;
       Thread.sleep(100);

--
Gitblit v1.10.0