mirror of https://github.com/apache/activemq.git
Scale back this test a little bit. It was storing 1.6 GIG is message contents. Which took a long time to store and also
will fail on machines that don't have the much free space. If we want to run BIG tests like that they should go into a system testing module. Scaled it back so that only 160 Megs of data are generated by the test git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@593585 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2edad74ca9
commit
5e3aa21375
|
@ -39,7 +39,7 @@ import org.apache.commons.logging.LogFactory;
|
||||||
*/
|
*/
|
||||||
public class DurableConsumerTest extends TestCase {
|
public class DurableConsumerTest extends TestCase {
|
||||||
private static final Log LOG = LogFactory.getLog(DurableConsumerTest.class);
|
private static final Log LOG = LogFactory.getLog(DurableConsumerTest.class);
|
||||||
private static int COUNT = 1024*100;
|
private static int COUNT = 1024*10;
|
||||||
private static String CONSUMER_NAME = "DURABLE_TEST";
|
private static String CONSUMER_NAME = "DURABLE_TEST";
|
||||||
protected BrokerService broker;
|
protected BrokerService broker;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue