[hibernate-commits] Hibernate SVN: r17637 - in core/trunk/cache-jbosscache/src: test/resources and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Oct 6 16:42:51 EDT 2009


Author: bstansberry at jboss.com
Date: 2009-10-06 16:42:51 -0400 (Tue, 06 Oct 2009)
New Revision: 17637

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

Modified: core/trunk/cache-jbosscache/src/main/resources/org/hibernate/cache/jbc/builder/jbc-configs.xml
===================================================================
(Binary files differ)

Modified: core/trunk/cache-jbosscache/src/test/resources/treecache.xml
===================================================================
--- core/trunk/cache-jbosscache/src/test/resources/treecache.xml	2009-10-06 20:14:00 UTC (rev 17636)
+++ core/trunk/cache-jbosscache/src/test/resources/treecache.xml	2009-10-06 20:42:51 UTC (rev 17637)
@@ -98,6 +98,9 @@
 
         <!-- Max number of milliseconds to wait for a lock acquisition -->
         <attribute name="LockAcquisitionTimeout">15000</attribute>
+        
+        <!--  Lock Striping can lead to deadlocks -->
+        <attribute name="UseLockStriping">false</attribute>
 
        <!--
           Indicate whether to use marshalling or not. Set this to true if you 



More information about the hibernate-commits mailing list