Updated Branches: refs/heads/trunk dacc03747 -> 4cc526112
Added timeouts because of CI hangs Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/4cc52611 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/4cc52611 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/4cc52611 Branch: refs/heads/trunk Commit: 4cc526112e6d0e051fb5da7832d5d209ab495dcb Parents: dacc037 Author: Kevin Earls <[email protected]> Authored: Thu Feb 6 10:00:24 2014 +0100 Committer: Kevin Earls <[email protected]> Committed: Thu Feb 6 10:00:24 2014 +0100 ---------------------------------------------------------------------- .../network/jms/QueueBridgeStandaloneReconnectTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/4cc52611/activemq-unit-tests/src/test/java/org/apache/activemq/network/jms/QueueBridgeStandaloneReconnectTest.java ---------------------------------------------------------------------- diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/network/jms/QueueBridgeStandaloneReconnectTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/network/jms/QueueBridgeStandaloneReconnectTest.java index bfba58b..c3553f3 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/network/jms/QueueBridgeStandaloneReconnectTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/network/jms/QueueBridgeStandaloneReconnectTest.java @@ -53,7 +53,7 @@ public class QueueBridgeStandaloneReconnectTest { private final ArrayList<Connection> connections = new ArrayList<Connection>(); - @Test + @Test(timeout = 60 * 1000) public void testSendAndReceiveOverConnectedBridges() throws Exception { startLocalBroker(); @@ -91,7 +91,7 @@ public class QueueBridgeStandaloneReconnectTest { })); } - @Test + @Test(timeout = 60 * 1000) public void testSendAndReceiveOverBridgeWhenStartedBeforeBrokers() throws Exception { jmsQueueConnector.start(); @@ -136,7 +136,7 @@ public class QueueBridgeStandaloneReconnectTest { })); } - @Test + @Test(timeout = 60 * 1000) public void testSendAndReceiveOverBridgeWithRestart() throws Exception { startLocalBroker();
