Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 23248 invoked from network); 18 Feb 2011 10:26:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 18 Feb 2011 10:26:40 -0000 Received: (qmail 86993 invoked by uid 500); 18 Feb 2011 10:26:40 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 86914 invoked by uid 500); 18 Feb 2011 10:26:37 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 86906 invoked by uid 99); 18 Feb 2011 10:26:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Feb 2011 10:26:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Feb 2011 10:26:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BDFDF238890B; Fri, 18 Feb 2011 10:26:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1071939 - /activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverTransportBrokerTest.java Date: Fri, 18 Feb 2011 10:26:15 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110218102615.BDFDF238890B@eris.apache.org> Author: gtully Date: Fri Feb 18 10:26:15 2011 New Revision: 1071939 URL: http://svn.apache.org/viewvc?rev=1071939&view=rev Log: see what goes on with the listener when org.apache.activemq.transport.failover.FailoverTransportBrokerTest#testNoBrokersInBrokerInfo fails Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverTransportBrokerTest.java Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverTransportBrokerTest.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverTransportBrokerTest.java?rev=1071939&r1=1071938&r2=1071939&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverTransportBrokerTest.java (original) +++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverTransportBrokerTest.java Fri Feb 18 10:26:15 2011 @@ -123,6 +123,7 @@ public class FailoverTransportBrokerTest c.setListener(new TransportListener() { @Override public void onCommand(Object command) { + LOG.info("Got command: " + command); if (command instanceof BrokerInfo) { info[0] = (BrokerInfo) command; }