Skip to content

Commit

Permalink
IT ReplicationDomainTest upper waitEndExport timeout (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
vharseko authored Feb 4, 2025
1 parent f43f275 commit 2fa7a95
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -442,7 +443,7 @@ private String buildExportedData(final int ENTRYCOUNT)
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);
Expand Down

0 comments on commit 2fa7a95

Please sign in to comment.