You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by tf...@apache.org on 2017/07/05 19:09:36 UTC

lucene-solr:branch_7_0: SOLR-11015: Increase socket timeout time for client used for admin operations in ChaosMonkey tests

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7_0 f288b440b -> 7e3d48222


SOLR-11015: Increase socket timeout time for client used for admin operations in ChaosMonkey tests


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/7e3d4822
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/7e3d4822
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/7e3d4822

Branch: refs/heads/branch_7_0
Commit: 7e3d48222f3aa0176f2b451b926f22b21a808b87
Parents: f288b44
Author: Tomas Fernandez Lobbe <tf...@apache.org>
Authored: Wed Jul 5 11:54:50 2017 -0700
Committer: Tomas Fernandez Lobbe <tf...@apache.org>
Committed: Wed Jul 5 12:00:54 2017 -0700

----------------------------------------------------------------------
 .../java/org/apache/solr/cloud/AbstractFullDistribZkTestBase.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/7e3d4822/solr/test-framework/src/java/org/apache/solr/cloud/AbstractFullDistribZkTestBase.java
----------------------------------------------------------------------
diff --git a/solr/test-framework/src/java/org/apache/solr/cloud/AbstractFullDistribZkTestBase.java b/solr/test-framework/src/java/org/apache/solr/cloud/AbstractFullDistribZkTestBase.java
index 72caa55..2ac5dd4 100644
--- a/solr/test-framework/src/java/org/apache/solr/cloud/AbstractFullDistribZkTestBase.java
+++ b/solr/test-framework/src/java/org/apache/solr/cloud/AbstractFullDistribZkTestBase.java
@@ -1738,7 +1738,7 @@ public abstract class AbstractFullDistribZkTestBase extends AbstractDistribZkTes
   protected SolrClient createNewSolrClient(String collection, String baseUrl) {
     try {
       // setup the server...
-      HttpSolrClient client = getHttpSolrClient(baseUrl + "/" + collection, DEFAULT_CONNECTION_TIMEOUT);
+      HttpSolrClient client = getHttpSolrClient(baseUrl + "/" + collection, DEFAULT_CONNECTION_TIMEOUT, 60000);
       return client;
     }
     catch (Exception ex) {