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
diff --git a/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java b/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java
index 474a182..34f6f0d 100755
--- a/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java
+++ b/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java
@@ -39,7 +39,7 @@
  */
 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;