You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ho...@apache.org on 2022/11/01 15:19:28 UTC

[solr] branch main updated: Increase timeout for non-nightly TestBulkSchemaConcurrent

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 733df46c47c Increase timeout for non-nightly TestBulkSchemaConcurrent
733df46c47c is described below

commit 733df46c47c150db19350e4eba83c737719e74b8
Author: Houston Putman <ho...@apache.org>
AuthorDate: Tue Nov 1 11:19:18 2022 -0400

    Increase timeout for non-nightly TestBulkSchemaConcurrent
---
 solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java b/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java
index 48c99a630b9..ccff799d889 100644
--- a/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java
+++ b/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java
@@ -49,7 +49,7 @@ import org.slf4j.LoggerFactory;
 public class TestBulkSchemaConcurrent extends AbstractFullDistribZkTestBase {
   private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
 
-  private static final long TIMEOUT = TEST_NIGHTLY ? 10 : 1; // in seconds
+  private static final long TIMEOUT = TEST_NIGHTLY ? 10 : 2; // in seconds
   private static final int THREAD_COUNT = TEST_NIGHTLY ? 5 : 2;
 
   @BeforeClass