The roundrobin test was failing on slow machines because the prefetch size was too small so the round robined

distribution was not equals since the slow consumer's prefetch window would fill up and other consumers would
unevenly get more messages.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@365537 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-01-03 04:35:23 +00:00
parent d06b32bab3
commit d9987ffd31
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ public class QueueSubscriptionTest extends JmsMultipleClientsTestSupport {
producerCount = 50;
messageCount = 100;
messageSize = 1; // 1 byte
prefetchCount = 10;
prefetchCount = 100;
doMultipleClientsTest();