[jboss-cvs] JBoss Messaging SVN: r7326 - in trunk: src/main/org/jboss/messaging/core/config/impl and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Jun 13 04:49:43 EDT 2009


Author: timfox
Date: 2009-06-13 04:49:43 -0400 (Sat, 13 Jun 2009)
New Revision: 7326

Modified:
   trunk/.classpath
   trunk/build-messaging.xml
   trunk/src/main/org/jboss/messaging/core/config/impl/ConfigurationImpl.java
Log:
fixed build-messaging + increases max aio to 1000

Modified: trunk/.classpath
===================================================================
--- trunk/.classpath	2009-06-13 07:18:31 UTC (rev 7325)
+++ trunk/.classpath	2009-06-13 08:49:43 UTC (rev 7326)
@@ -5,7 +5,6 @@
 	<classpathentry kind="src" path="build/src"/>
 	<classpathentry kind="src" path="tests/jms-tests/config"/>
 	<classpathentry kind="src" path="tests/config"/>
-	<classpathentry kind="src" path="src/config/stand-alone/non-clustered"/>
 	<classpathentry excluding="**/.svn/**/*" kind="src" path="tests/src">
 		<attributes>
 			<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="trunk/native/bin"/>

Modified: trunk/build-messaging.xml
===================================================================
--- trunk/build-messaging.xml	2009-06-13 07:18:31 UTC (rev 7325)
+++ trunk/build-messaging.xml	2009-06-13 08:49:43 UTC (rev 7326)
@@ -1082,13 +1082,13 @@
 
    <target name="performance-tests" depends="jar, compile-unit-tests">
       <antcall inheritall="true" inheritrefs="true" target="tests">
-         <param name="tests.param" value="**/org/jboss/messaging/tests/performance/**/*StartStop*.class"/>
+         <param name="tests.param" value="**/org/jboss/messaging/tests/performance/**/*${test-mask}.class"/>
       </antcall>
    </target>
 
    <target name="integration-tests" depends="jar, compile-unit-tests">
       <antcall inheritall="true" inheritrefs="true" target="tests">
-         <param name="tests.param" value="**/org/jboss/messaging/tests/integration/**/*StartStop*.class"/>
+         <param name="tests.param" value="**/org/jboss/messaging/tests/integration/**/*${test-mask}.class"/>
       </antcall>
    </target>
 

Modified: trunk/src/main/org/jboss/messaging/core/config/impl/ConfigurationImpl.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/config/impl/ConfigurationImpl.java	2009-06-13 07:18:31 UTC (rev 7325)
+++ trunk/src/main/org/jboss/messaging/core/config/impl/ConfigurationImpl.java	2009-06-13 08:49:43 UTC (rev 7326)
@@ -93,7 +93,7 @@
 
    public static final int DEFAULT_JOURNAL_MIN_FILES = 2;
 
-   public static final int DEFAULT_JOURNAL_MAX_AIO = 500;
+   public static final int DEFAULT_JOURNAL_MAX_AIO = 1000;
    
    public static final boolean DEFAULT_JOURNAL_AIO_FLUSH_SYNC = false;
    




More information about the jboss-cvs-commits mailing list