mirror of https://github.com/apache/activemq.git
derby on virtual hw can be very slow, so a query with an intentionally large backlog can take some time
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1431494 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6e36321669
commit
7d2ac2d936
|
@ -575,8 +575,9 @@ abstract public class MessagePriorityTest extends CombinationTestSupport {
|
|||
LOG.info("Starting consumer...");
|
||||
MessageConsumer queueConsumer = sess.createConsumer(queue);
|
||||
for (int i = 0; i < 500; i++) {
|
||||
Message msg = queueConsumer.receive(5000);
|
||||
Message msg = queueConsumer.receive(20000);
|
||||
LOG.debug("received i=" + i + ", " + (msg!=null? msg.getJMSMessageID() : null));
|
||||
if (msg == null) dumpAllThreads("backlog");
|
||||
assertNotNull("Message " + i + " was null", msg);
|
||||
assertEquals("Message " + i + " has wrong priority", i < 10 ? HIGH_PRI : LOW_PRI, msg.getJMSPriority());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue