You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2010/09/29 19:34:16 UTC

svn commit: r1002767 - /activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/perf/BaseBrokerPerfSupport.scala

Author: chirino
Date: Wed Sep 29 17:34:15 2010
New Revision: 1002767

URL: http://svn.apache.org/viewvc?rev=1002767&view=rev
Log:
took out change that added durable=true to the test combinations

Modified:
    activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/perf/BaseBrokerPerfSupport.scala

Modified: activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/perf/BaseBrokerPerfSupport.scala
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/perf/BaseBrokerPerfSupport.scala?rev=1002767&r1=1002766&r2=1002767&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/perf/BaseBrokerPerfSupport.scala (original)
+++ activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/perf/BaseBrokerPerfSupport.scala Wed Sep 29 17:34:15 2010
@@ -32,7 +32,7 @@ abstract class BaseBrokerPerfSupport ext
   def messageSizes = List(20,1024,1024*256)
 
   // benchmark all the combinations
-  for( ptp <- List(true,false) ; durable <- List(false,true) ; messageSize <- messageSizes ) {
+  for( ptp <- List(true,false) ; durable <- List(false) ; messageSize <- messageSizes ) {
 
     def benchmark(name:String)(func: =>Unit) {
       test(name) {