Updated Branches: refs/heads/trunk a059bf4a9 -> 4350ded2c
Fix for intermittent failures, see https://issues.apache.org/jira/browse/AMQ-5053 Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/4350ded2 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/4350ded2 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/4350ded2 Branch: refs/heads/trunk Commit: 4350ded2c507be6c02ac769456a37e180ba29fc6 Parents: a059bf4 Author: Kevin Earls <[email protected]> Authored: Fri Feb 14 16:08:51 2014 +0100 Committer: Kevin Earls <[email protected]> Committed: Fri Feb 14 16:08:51 2014 +0100 ---------------------------------------------------------------------- .../test/java/org/apache/activemq/broker/BrokerRedeliveryTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/4350ded2/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerRedeliveryTest.java ---------------------------------------------------------------------- diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerRedeliveryTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerRedeliveryTest.java index a07f6df..c61a5ee 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerRedeliveryTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerRedeliveryTest.java @@ -107,7 +107,7 @@ public class BrokerRedeliveryTest extends org.apache.activemq.TestSupport { consumerConnection.start(); Session consumerSession = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE); MessageConsumer consumer = consumerSession.createConsumer(destination); - sendMessage(1000); + sendMessage(1500); Message message = consumer.receive(1000); assertNotNull("got message", message);
