Yeah, so we use the "special IPv6" addresses here for 2 reasons (also since my 
fix in DIH's test):
- If the machine does not support IPv6 you get the "protocol not supported" 
exception (IOException)
- If the machine has IPv6 enabled, you will get a "no route to host" (also 
IOException), because those addresses used in the URL are special private test 
addresses, which no router would ever forward.
In both cases you get an IOException when trying to connect to such a "dead 
server", which is all the test wants to check.

Previously those "dead servers" array was filled with 127.0.0.1 and a random, 
but unbound port, triggering the blackhole. 

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


> -----Original Message-----
> From: Mark Miller [mailto:markrmil...@gmail.com]
> Sent: Wednesday, December 19, 2012 6:54 PM
> To: dev@lucene.apache.org
> Subject: Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #186: POMs out of
> sync
> 
> Ah, okay - if that is the expected exception then, the real problem is
> something else. I had not seen it before.
> 
> I'll try and figure out why it can't talk to any of the nodes then. This test 
> does
> not kill node or anything…
> 
> - Mark
> 
> On Dec 19, 2012, at 12:46 PM, "Uwe Schindler" <u...@thetaphi.de> wrote:
> 
> > But this is exactly what we wanted! Those IPv6 server addresses are
> exactly to "emulate" servers that are down (see the array of those addresses
> in BaseDistributedTestCase)? So if you enable or disable IPv6 should not
> make a difference, the thing should only throw *any* exception and not
> make the blackhole happy.
> >
> > -----
> > Uwe Schindler
> > H.-H.-Meier-Allee 63, D-28213 Bremen
> > http://www.thetaphi.de
> > eMail: u...@thetaphi.de
> >
> >
> >> -----Original Message-----
> >> From: Mark Miller [mailto:markrmil...@gmail.com]
> >> Sent: Wednesday, December 19, 2012 6:40 PM
> >> To: dev@lucene.apache.org
> >> Subject: Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #186: POMs out
> of
> >> sync
> >>
> >> So one of the tests that fails is the distrib mlt - I need to look at
> >> that test closer in general, but it's an odd fail - I see the same
> >> thing happen on my freebsd vm. Key is Caused by:
> >> java.net.SocketException: Protocol family unavailable.
> >>
> >> I tried what I could to enable ipv6 on my freebsd vm, but no luck on this
> one.
> >> Googling, everything I've seen suggests IPv6 as the possible problem.
> >> I don't know why other tests don't show the problem though...
> >>
> >> [junit4:junit4]   2>       Caused by:
> >> org.apache.solr.client.solrj.SolrServerException: No live SolrServers
> >> available to handle this request:[http://[ff01::083]:33332,
> >> http://[ff01::114]:33332, http://[ff01::213]:33332, http://127.0.0.1:60340]
> >> [junit4:junit4]   2>               at
> >> org.apache.solr.client.solrj.impl.LBHttpSolrServer.request(LBHttpSolr
> >> Server.j
> >> ava:325)
> >> [junit4:junit4]   2>               at
> >>
> org.apache.solr.handler.component.HttpShardHandler$1.call(HttpShardHa
> >> nd
> >> ler.java:171)
> >> [junit4:junit4]   2>               at
> >>
> org.apache.solr.handler.component.HttpShardHandler$1.call(HttpShardHa
> >> nd
> >> ler.java:135)
> >> [junit4:junit4]   2>               at
> >> java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
> >> [junit4:junit4]   2>               at
> >> java.util.concurrent.FutureTask.run(FutureTask.java:166)
> >> [junit4:junit4]   2>               at
> >> java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
> >> [junit4:junit4]   2>               at
> >> java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
> >> [junit4:junit4]   2>               at
> >> java.util.concurrent.FutureTask.run(FutureTask.java:166)
> >> [junit4:junit4]   2>               at
> >> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.
> >> jav
> >> a:1110)
> >> [junit4:junit4]   2>               at
> >>
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
> >> .ja
> >> va:603)
> >> [junit4:junit4]   2>               ... 1 more
> >> [junit4:junit4]   2>       Caused by:
> >> org.apache.solr.client.solrj.SolrServerException: IOException occured
> >> when talking to server at: http://[ff01::083]:33332
> >> [junit4:junit4]   2>               at
> >>
> org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:
> >> 413)
> >> [junit4:junit4]   2>               at
> >>
> org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:
> >> 181)
> >> [junit4:junit4]   2>               at
> >> org.apache.solr.client.solrj.impl.LBHttpSolrServer.request(LBHttpSolr
> >> Server.j
> >> ava:290)
> >> [junit4:junit4]   2>               ... 10 more
> >> [junit4:junit4]   2>       Caused by: java.net.SocketException: Protocol 
> >> family
> >> unavailable
> >>
> >> On Dec 19, 2012, at 9:35 AM, Uwe Schindler <u...@thetaphi.de> wrote:
> >>
> >>> Juhuuuu! Thanks you.
> >>> The same applies to Maven ANT builds, they are the same tests failing.
> >>> The nightly builds also seem to pass. :-)
> >>>
> >>> -----
> >>> Uwe Schindler
> >>> H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de
> >>> eMail: u...@thetaphi.de
> >>>
> >>>
> >>>> -----Original Message-----
> >>>> From: Mark Miller [mailto:markrmil...@gmail.com]
> >>>> Sent: Wednesday, December 19, 2012 3:21 PM
> >>>> To: dev@lucene.apache.org
> >>>> Subject: Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #186: POMs
> out
> >> of
> >>>> sync
> >>>>
> >>>> Nice - down to 2 tests failed on the freebsd maven build. We will
> >>>> get this passing soon.
> >>>>
> >>>> - Mark
> >>>>
> >>>> On Dec 19, 2012, at 9:16 AM, Apache Jenkins Server
> >>>> <jenk...@builds.apache.org> wrote:
> >>>>
> >>>>> Build: https://builds.apache.org/job/Lucene-Solr-Maven-4.x/186/
> >>>>>
> >>>>> 2 tests failed.
> >>>>> REGRESSION:
> >>>>> org.apache.solr.cloud.RecoveryZkTest.testDistribSearch
> >>>>>
> >>>>> Error Message:
> >>>>> expected:<280> but was:<42>
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.AssertionError: expected:<280> but was:<42>
> >>>>>         at
> >>>>
> >>
> __randomizedtesting.SeedInfo.seed([A36CEAF4C1EE24D2:228A64ECB6B144E
> >>>> E]:0)
> >>>>>         at org.junit.Assert.fail(Assert.java:93)
> >>>>>         at org.junit.Assert.failNotEquals(Assert.java:647)
> >>>>>         at org.junit.Assert.assertEquals(Assert.java:128)
> >>>>>         at org.junit.Assert.assertEquals(Assert.java:472)
> >>>>>         at org.junit.Assert.assertEquals(Assert.java:456)
> >>>>>         at
> >>>> org.apache.solr.cloud.RecoveryZkTest.doTest(RecoveryZkTest.java:99)
> >>>>>         at
> >>>> org.apache.solr.BaseDistributedSearchTestCase.testDistribSearch(Bas
> >>>> eD
> >>>> istri
> >>>> butedSearchTestCase.java:794)
> >>>>>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >>>>>         at
> >>>>
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
> >>>> j
> >>>> ava:57)
> >>>>>         at
> >>>>
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
> >>>> sorImpl.java:43)
> >>>>>         at java.lang.reflect.Method.invoke(Method.java:616)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>> dRunner.java:1559)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.access$600(Rando
> >>>> mizedRunner.java:79)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>> mizedRunner.java:737)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>> mizedRunner.java:773)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>> mizedRunner.java:787)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
> >>>> evaluate(SystemPropertiesRestoreRule.java:53)
> >>>>>         at
> >>>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRu
> >>>> le
> >>>> SetupTeardownChained.java:50)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleFieldCacheSanity$1.evaluate(TestRule
> >>>> Fi
> >>>> eldCa
> >>>> cheSanity.java:51)
> >>>>>         at
> >>>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractB
> >>>> ef
> >>>> oreA
> >>>> fterRule.java:46)
> >>>>>         at
> >>>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantR
> >>>> ul
> >>>> e$1
> >>>> .evaluate(SystemPropertiesInvariantRule.java:55)
> >>>>>         at
> >>>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleT
> >>>> h
> >>>> readAndTestName.java:49)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(Te
> >>>> st
> >>>> Rule
> >>>> IgnoreAfterMaxFailures.java:70)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkF
> >>>> ai
> >>>> lure
> >>>> .java:48)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
> >>>> run(ThreadLeakControl.java:358)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTa
> >>>> sk
> >>>> (ThreadLeakControl.java:782)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(Threa
> >>>> dL
> >>>> eakControl.java:442)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>> domizedRunner.java:746)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(Rando
> >>>> mizedRunner.java:648)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(Rando
> >>>> mizedRunner.java:682)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>> mizedRunner.java:693)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
> >>>> evaluate(SystemPropertiesRestoreRule.java:53)
> >>>>>         at
> >>>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractB
> >>>> ef
> >>>> oreA
> >>>> fterRule.java:46)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleSt
> >>>> or
> >>>> eCl
> >>>> assName.java:42)
> >>>>>         at
> >>>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantR
> >>>> ul
> >>>> e$1
> >>>> .evaluate(SystemPropertiesInvariantRule.java:55)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>
> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>
> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRu
> >>>> le
> >>>> Ass
> >>>> ertionsRequired.java:43)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkF
> >>>> ai
> >>>> lure
> >>>> .java:48)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(Te
> >>>> st
> >>>> Rule
> >>>> IgnoreAfterMaxFailures.java:70)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRule
> >>>> Ig
> >>>> nore
> >>>> TestSuites.java:55)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
> >>>> run(ThreadLeakControl.java:358)
> >>>>>         at java.lang.Thread.run(Thread.java:679)
> >>>>>
> >>>>>
> >>>>> FAILED:  org.apache.solr.cloud.SyncSliceTest.testDistribSearch
> >>>>>
> >>>>> Error Message:
> >>>>> null
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.AssertionError
> >>>>>         at
> >>>>
> >>
> __randomizedtesting.SeedInfo.seed([6B89D22C280658BE:EA6F5C345F59388
> >>>> 2]:0)
> >>>>>         at org.junit.Assert.fail(Assert.java:92)
> >>>>>         at org.junit.Assert.assertTrue(Assert.java:43)
> >>>>>         at org.junit.Assert.assertNotNull(Assert.java:526)
> >>>>>         at org.junit.Assert.assertNotNull(Assert.java:537)
> >>>>>         at 
> >>>>> org.apache.solr.cloud.SyncSliceTest.doTest(SyncSliceTest.java:211)
> >>>>>         at
> >>>> org.apache.solr.BaseDistributedSearchTestCase.testDistribSearch(Bas
> >>>> eD
> >>>> istri
> >>>> butedSearchTestCase.java:794)
> >>>>>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >>>>>         at
> >>>>
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
> >>>> j
> >>>> ava:57)
> >>>>>         at
> >>>>
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
> >>>> sorImpl.java:43)
> >>>>>         at java.lang.reflect.Method.invoke(Method.java:616)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>> dRunner.java:1559)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.access$600(Rando
> >>>> mizedRunner.java:79)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>> mizedRunner.java:737)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>> mizedRunner.java:773)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>> mizedRunner.java:787)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
> >>>> evaluate(SystemPropertiesRestoreRule.java:53)
> >>>>>         at
> >>>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRu
> >>>> le
> >>>> SetupTeardownChained.java:50)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleFieldCacheSanity$1.evaluate(TestRule
> >>>> Fi
> >>>> eldCa
> >>>> cheSanity.java:51)
> >>>>>         at
> >>>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractB
> >>>> ef
> >>>> oreA
> >>>> fterRule.java:46)
> >>>>>         at
> >>>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantR
> >>>> ul
> >>>> e$1
> >>>> .evaluate(SystemPropertiesInvariantRule.java:55)
> >>>>>         at
> >>>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleT
> >>>> h
> >>>> readAndTestName.java:49)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(Te
> >>>> st
> >>>> Rule
> >>>> IgnoreAfterMaxFailures.java:70)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkF
> >>>> ai
> >>>> lure
> >>>> .java:48)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
> >>>> run(ThreadLeakControl.java:358)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTa
> >>>> sk
> >>>> (ThreadLeakControl.java:782)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(Threa
> >>>> dL
> >>>> eakControl.java:442)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>> domizedRunner.java:746)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(Rando
> >>>> mizedRunner.java:648)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(Rando
> >>>> mizedRunner.java:682)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>> mizedRunner.java:693)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
> >>>> evaluate(SystemPropertiesRestoreRule.java:53)
> >>>>>         at
> >>>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractB
> >>>> ef
> >>>> oreA
> >>>> fterRule.java:46)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleSt
> >>>> or
> >>>> eCl
> >>>> assName.java:42)
> >>>>>         at
> >>>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantR
> >>>> ul
> >>>> e$1
> >>>> .evaluate(SystemPropertiesInvariantRule.java:55)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>
> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>
> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRu
> >>>> le
> >>>> Ass
> >>>> ertionsRequired.java:43)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkF
> >>>> ai
> >>>> lure
> >>>> .java:48)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(Te
> >>>> st
> >>>> Rule
> >>>> IgnoreAfterMaxFailures.java:70)
> >>>>>         at
> >>>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRule
> >>>> Ig
> >>>> nore
> >>>> TestSuites.java:55)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(St
> >>>> at
> >>>> ementAdapter.java:36)
> >>>>>         at
> >>>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
> >>>> run(ThreadLeakControl.java:358)
> >>>>>         at java.lang.Thread.run(Thread.java:679)
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>> Build Log:
> >>>>> [...truncated 21401 lines...]
> >>>>>
> >>>>>
> >>>>>
> >>>>> ------------------------------------------------------------------
> >>>>> --
> >>>>> - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For
> >>>>> additional commands, e-mail: dev-h...@lucene.apache.org
> >>>>
> >>>>
> >>>> -------------------------------------------------------------------
> >>>> -- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For
> >>>> additional commands, e-mail: dev-h...@lucene.apache.org
> >>>
> >>>
> >>> --------------------------------------------------------------------
> >>> - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For
> >>> additional commands, e-mail: dev-h...@lucene.apache.org
> >>>
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For
> >> additional commands, e-mail: dev-h...@lucene.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For
> > additional commands, e-mail: dev-h...@lucene.apache.org
> >
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional
> commands, e-mail: dev-h...@lucene.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to