Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-09-04 Thread Chris Hostetter
@lucene.apache.org : Subject: Re: svn commit: r1379362 - in : /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: : BasicDistributedZk2Test.java BasicDistributedZkTest.java : : Oh man... now I know why the hell the JVM terminates with error 11... : : SyncThread's

Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-09-04 Thread Dawid Weiss
Can't our new SecurityManager block any code from calling System.exit? (doesn't help users, but would have at least help us discover this in tests right?) Yeah, now it does -- Uwe took care of it. D. - To unsubscribe,

Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-09-04 Thread Chris Hostetter
: Yeah, now it does -- Uwe took care of it. yeah ... i didn't see it suggested in this thread, but then later saw they new jira/commit. awesome. -Hoss - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For

Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-09-03 Thread Dawid Weiss
Oh man... now I know why the hell the JVM terminates with error 11... SyncThread's interrupt causes this: } catch (Throwable t) { LOG.fatal(Severe unrecoverable error, exiting, t); System.exit(11); } D. On Fri, Aug 31, 2012 at 5:21 PM, Dawid Weiss

Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-09-03 Thread Robert Muir
we should open a bug at zookeeper. On Mon, Sep 3, 2012 at 7:03 AM, Dawid Weiss dawid.we...@cs.put.poznan.pl wrote: Oh man... now I know why the hell the JVM terminates with error 11... SyncThread's interrupt causes this: } catch (Throwable t) { LOG.fatal(Severe

Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-09-03 Thread Dawid Weiss
I filed this: https://issues.apache.org/jira/browse/ZOOKEEPER-1544 Dawid On Mon, Sep 3, 2012 at 1:51 PM, Robert Muir rcm...@gmail.com wrote: we should open a bug at zookeeper. On Mon, Sep 3, 2012 at 7:03 AM, Dawid Weiss dawid.we...@cs.put.poznan.pl wrote: Oh man... now I know why the hell

Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-08-31 Thread Robert Muir
FYI: I'm not sure if this is related, but there is a thread from zookeeper SyncThread that you should never interrupt. Back in the day interrupting this thread in freebsd jenkins (but also locally on windows or linux) would cause JVM crashes. so the old huge hairy LuceneTestCase had this code:

Re: svn commit: r1379362 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud: BasicDistributedZk2Test.java BasicDistributedZkTest.java

2012-08-31 Thread Dawid Weiss
Oh yeah -- you mentioned it to me once, but I forgot about it. Thanks, I'll see if this was the cause. Dawid On Fri, Aug 31, 2012 at 3:12 PM, Robert Muir rcm...@gmail.com wrote: FYI: I'm not sure if this is related, but there is a thread from zookeeper SyncThread that you should never