mirror of https://github.com/apache/activemq.git
fixing test for https://issues.apache.org/activemq/browse/AMQ-2303 - 200 consumers is too much for some linux machines, too many open files
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@790521 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7da1e6eb80
commit
5a8d59d107
|
@ -174,7 +174,7 @@ public class DurableConsumerTest extends TestCase {
|
|||
Thread publisherThread = new Thread( new MessagePublisher() );
|
||||
publisherThread.start();
|
||||
|
||||
for( int i = 0; i < 200; i++ ) {
|
||||
for( int i = 0; i < 100; i++ ) {
|
||||
|
||||
final int id = i;
|
||||
Thread thread = new Thread( new Runnable() {
|
||||
|
|
Loading…
Reference in New Issue