This is an automated email from the ASF dual-hosted git repository.
houston pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 9e72a75caa1 SOLR-16430: Add longer wait in backup tests
9e72a75caa1 is described below
commit 9e72a75caa1cbff0632912dea36b8d432aa47d09
Author: Houston Putman <[email protected]>
AuthorDate: Fri Sep 23 17:10:38 2022 -0400
SOLR-16430: Add longer wait in backup tests
---
.../solr/cloud/api/collections/AbstractIncrementalBackupTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/solr/test-framework/src/java/org/apache/solr/cloud/api/collections/AbstractIncrementalBackupTest.java
b/solr/test-framework/src/java/org/apache/solr/cloud/api/collections/AbstractIncrementalBackupTest.java
index cdda36cbe9a..ff59cc836d1 100644
---
a/solr/test-framework/src/java/org/apache/solr/cloud/api/collections/AbstractIncrementalBackupTest.java
+++
b/solr/test-framework/src/java/org/apache/solr/cloud/api/collections/AbstractIncrementalBackupTest.java
@@ -223,7 +223,7 @@ public abstract class AbstractIncrementalBackupTest extends
SolrCloudTestCase {
CollectionAdminRequest.restoreCollection(backupCollectionName,
backupName)
.setLocation(backupLocation)
.setRepositoryName(BACKUP_REPO_NAME)
- .processAndWait(cluster.getSolrClient(), 20);
+ .processAndWait(cluster.getSolrClient(), 30);
assertEquals(RequestStatusState.COMPLETED, result);
}
assertEquals(firstBatchNumDocs,
getNumDocsInCollection(backupCollectionName));