Rafi, Not sure why but our build systems have been failing since this commit. I'm just writing up some other issues for the Java Client so if you have a slower single core box to take a look. The quad core box here seems to pass every so often but the 3.2Ghz P4 fails on every run. With a bunch of test errors.
Cheers Martin 2008/11/4 <[EMAIL PROTECTED]>: > Author: rhs > Date: Tue Nov 4 12:13:07 2008 > New Revision: 711377 > > URL: http://svn.apache.org/viewvc?rev=711377&view=rev > Log: > QPID-1430: fixed an NPE on connection close > > Modified: > > incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionDelegate_0_10.java > > Modified: > incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionDelegate_0_10.java > URL: > http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionDelegate_0_10.java?rev=711377&r1=711376&r2=711377&view=diff > ============================================================================== > --- > incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionDelegate_0_10.java > (original) > +++ > incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionDelegate_0_10.java > Tue Nov 4 12:13:07 2008 > @@ -206,7 +206,7 @@ > ConnectionException exc = exception; > exception = null; > > - ConnectionClose close = exc.getClose(); > + ConnectionClose close = (exc == null ? null : exc.getClose()); > if (close == null) > { > try > > > -- Martin Ritchie
