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:00:25 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x b52974f33 -> 2b5d8868f


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/2b5d8868
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/2b5d8868
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/2b5d8868

Branch: refs/heads/branch_7x
Commit: 2b5d8868f704380199a4d7930f8a4050c1379fdb
Parents: b52974f
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 11:56:56 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/2b5d8868/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) {