fix LB tests for those with ISPs that never fail DNS lookups

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1022335 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2010-10-14 00:52:11 +00:00
parent e7ae91affd
commit 7ce145de86
1 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,9 @@ public abstract class BaseDistributedSearchTestCase extends SolrTestCaseJ4 {
protected String context = "/solr";
protected String shards;
protected String[] shardsArr;
protected String[] deadServers = {"does_not_exist_54321.com:33331/solr","localhost:33332/solr"};
// Some ISPs redirect to their own web site for domains that don't exist, causing this to fail
// protected String[] deadServers = {"does_not_exist_54321.com:33331/solr","localhost:33332/solr"};
protected String[] deadServers = {"localhost:33332/solr"};
protected File testDir;
protected SolrServer controlClient;