Skip to content

Commit 2fa7a95

Browse files
authored
IT ReplicationDomainTest upper waitEndExport timeout (#476)
1 parent f43f275 commit 2fa7a95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opendj-server-legacy/src/test/java/org/opends/server/replication/service/ReplicationDomainTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* Copyright 2008-2010 Sun Microsystems, Inc.
1515
* Portions Copyright 2011-2016 ForgeRock AS.
16+
* Portions Copyright 2025 3A Systems,LLC.
1617
*/
1718
package org.opends.server.replication.service;
1819

@@ -442,7 +443,7 @@ private String buildExportedData(final int ENTRYCOUNT)
442443
private void waitEndExport(String exportedData, StringBuilder importedData) throws Exception
443444
{
444445
int count = 0;
445-
while (importedData.length() < exportedData.length() && count < 500)
446+
while (importedData.length() < exportedData.length() && count < 500*5)
446447
{
447448
count ++;
448449
Thread.sleep(100);

0 commit comments

Comments
 (0)