You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/08/31 14:48:06 UTC

[lucene-solr] branch reference_impl_dev updated: @646 Try boosting non nightly http2 client timeout a bit for GraphExpressionTest, which can hang on hitting an idle_timeout (oddly slow test sometimes).

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl_dev
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 1ca20c6  @646 Try boosting non nightly http2 client timeout a bit for GraphExpressionTest, which can hang on hitting an idle_timeout (oddly slow test sometimes).
1ca20c6 is described below

commit 1ca20c6a88422de4b7562e257bcd0fe65a16df47
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Mon Aug 31 09:46:57 2020 -0500

    @646 Try boosting non nightly http2 client timeout a bit for GraphExpressionTest, which can hang on hitting an idle_timeout (oddly slow test sometimes).
---
 .../test/org/apache/solr/client/solrj/io/graph/GraphExpressionTest.java | 1 +
 solr/test-framework/src/java/org/apache/solr/SolrTestCase.java          | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/io/graph/GraphExpressionTest.java b/solr/solrj/src/test/org/apache/solr/client/solrj/io/graph/GraphExpressionTest.java
index ab3a9b7..7e96e43 100644
--- a/solr/solrj/src/test/org/apache/solr/client/solrj/io/graph/GraphExpressionTest.java
+++ b/solr/solrj/src/test/org/apache/solr/client/solrj/io/graph/GraphExpressionTest.java
@@ -84,6 +84,7 @@ public class GraphExpressionTest extends SolrCloudTestCase {
 
   @BeforeClass
   public static void setupCluster() throws Exception {
+
     configureCluster(2)
         .addConfig("conf", getFile("solrj").toPath().resolve("solr").resolve("configsets").resolve("streaming").resolve("conf"))
         .configure();
diff --git a/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java b/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java
index 8bf2a14..d1ddfc3 100644
--- a/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java
+++ b/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java
@@ -299,7 +299,7 @@ public class SolrTestCase extends LuceneTestCase {
 
       System.setProperty("solr.tests.ramBufferSizeMB", "100");
 
-      System.setProperty("solr.http2solrclient.default.idletimeout", "10000");
+      System.setProperty("solr.http2solrclient.default.idletimeout", "15000");
       System.setProperty("distribUpdateSoTimeout", "10000");
       System.setProperty("socketTimeout", "15000");
       System.setProperty("connTimeout", "10000");