mirror of https://github.com/apache/lucene.git
Increase read timeout in shard split call to 5 minutes. 1 minute is too low for many seeds.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1534046 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7f47814b0d
commit
99db3a2137
|
@ -488,7 +488,7 @@ public class ShardSplitTest extends BasicDistributedZkTest {
|
|||
|
||||
HttpSolrServer baseServer = new HttpSolrServer(baseUrl);
|
||||
baseServer.setConnectionTimeout(15000);
|
||||
baseServer.setSoTimeout(60000);
|
||||
baseServer.setSoTimeout(60000 * 5);
|
||||
baseServer.request(request);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue