From 12eab24036514209155906dc42ccd8cb424adec4 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Mon, 8 Aug 2011 17:58:11 +0000 Subject: [PATCH] switch to address that won't cause false fails git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1155030 13f79535-47bb-0310-9956-ffa450edef68 --- .../test/org/apache/solr/client/solrj/SolrExceptionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExceptionTest.java b/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExceptionTest.java index f7dc9400d77..674700eb5d8 100644 --- a/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExceptionTest.java +++ b/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExceptionTest.java @@ -40,7 +40,7 @@ public class SolrExceptionTest extends LuceneTestCase { // set a 1ms timeout to let the connection fail faster. HttpClient httpClient = new HttpClient(new MultiThreadedHttpConnectionManager()); httpClient.getParams().setParameter("http.connection.timeout", new Integer(1)); - SolrServer client = new CommonsHttpSolrServer("http://localhost:11235/solr/", httpClient); + SolrServer client = new CommonsHttpSolrServer("http://[ff01::114]:11235/solr/", httpClient); SolrQuery query = new SolrQuery("test123"); client.query(query); } catch (SolrServerException sse) {