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:
Hiram R. Chirino 2007-11-09 16:30:07 +00:00
parent 2edad74ca9
commit 5e3aa21375
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ import org.apache.commons.logging.LogFactory;
*/
public class DurableConsumerTest extends TestCase {
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";
protected BrokerService broker;