[jboss-cvs] JBoss Messaging SVN: r6632 - trunk/tests/joram-tests/src/org/jboss/test/jms.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Apr 30 08:03:58 EDT 2009
Author: jmesnil
Date: 2009-04-30 08:03:57 -0400 (Thu, 30 Apr 2009)
New Revision: 6632
Modified:
trunk/tests/joram-tests/src/org/jboss/test/jms/SpawnedJMSServer.java
Log:
joram-tests speed up
* set the config's journalMinFiles to 2 to speed up the server start
Modified: trunk/tests/joram-tests/src/org/jboss/test/jms/SpawnedJMSServer.java
===================================================================
--- trunk/tests/joram-tests/src/org/jboss/test/jms/SpawnedJMSServer.java 2009-04-30 11:47:11 UTC (rev 6631)
+++ trunk/tests/joram-tests/src/org/jboss/test/jms/SpawnedJMSServer.java 2009-04-30 12:03:57 UTC (rev 6632)
@@ -75,7 +75,8 @@
Configuration conf = new ConfigurationImpl();
conf.getAcceptorConfigurations().add(new TransportConfiguration(NettyAcceptorFactory.class.getName()));
conf.setSecurityEnabled(false);
- conf.setEnableFileDeployment(true);
+ conf.setEnableFileDeployment(false);
+ conf.setJournalMinFiles(2);
final MessagingServer server = Messaging.newMessagingServer(conf);
More information about the jboss-cvs-commits
mailing list