Galder Zamarreño created ISPN-2060:
--------------------------------------
Summary: Versioning configuration not read when cache configuration is
retrieved
Key: ISPN-2060
URL:
https://issues.jboss.org/browse/ISPN-2060
Project: Infinispan
Issue Type: Bug
Components: Configuration
Affects Versions: 5.1.5.CR1, 5.1.4.FINAL
Reporter: Galder Zamarreño
Assignee: Galder Zamarreño
Fix For: 5.1.5.FINAL
Test:
{code}@Test(groups = "unit", testName = "BootTest")
public class BootTest extends SingleCacheManagerTest {
@Override
protected EmbeddedCacheManager createCacheManager() throws Exception {
return TestCacheManagerFactory.fromXml("infinispan.xml");
}
public void test000() {
new TreeCacheFactory().createTreeCache(cache);
}
}{code}
XML:
{code}<infinispan>
<default>
<locking isolationLevel="REPEATABLE_READ"
lockAcquisitionTimeout="15000" writeSkewCheck="true"/>
<transaction
transactionManagerLookupClass="org.infinispan.transaction.lookup.GenericTransactionManagerLookup"
transactionMode="TRANSACTIONAL" lockingMode="OPTIMISTIC"/>
<invocationBatching enabled="true"/>
<versioning versioningScheme="SIMPLE" enabled="true" />
<clustering mode="LOCAL"/>
</default>
<namedCache name="JCoffeeSystemCache">
<versioning versioningScheme="SIMPLE" enabled="true" />
</namedCache>
</infinispan>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira