[hibernate-commits] Hibernate SVN: r17642 - core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Oct 7 16:45:06 EDT 2009


Author: bstansberry at jboss.com
Date: 2009-10-07 16:45:06 -0400 (Wed, 07 Oct 2009)
New Revision: 17642

Modified:
   core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/optimistic-treecache.xml
   core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/pessimistic-treecache.xml
Log:
[HHH-3849] Disable lock striping in JBoss Cache configs

Modified: core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/optimistic-treecache.xml
===================================================================
--- core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/optimistic-treecache.xml	2009-10-07 09:09:57 UTC (rev 17641)
+++ core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/optimistic-treecache.xml	2009-10-07 20:45:06 UTC (rev 17642)
@@ -129,6 +129,8 @@
 
         <!-- Max number of milliseconds to wait for a lock acquisition -->
         <attribute name="LockAcquisitionTimeout">5000</attribute>
+        
+        <attribute name="UseLockStriping">false</attribute>
 
        <!--
           Indicate whether to use marshalling or not. Set this to true if you are running under a scoped

Modified: core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/pessimistic-treecache.xml
===================================================================
--- core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/pessimistic-treecache.xml	2009-10-07 09:09:57 UTC (rev 17641)
+++ core/trunk/cache-jbosscache/src/test/java/org/hibernate/test/cache/jbc/functional/pessimistic-treecache.xml	2009-10-07 20:45:06 UTC (rev 17642)
@@ -118,6 +118,8 @@
 
         <!-- Max number of milliseconds to wait for a lock acquisition -->
         <attribute name="LockAcquisitionTimeout">5000</attribute>
+        
+        <attribute name="UseLockStriping">false</attribute>
 
         <!-- For now. disable asynchronous RPC marshalling/sending -->
         <attribute name="SerializationExecutorPoolSize">0</attribute>



More information about the hibernate-commits mailing list