]
Anna Manukyan reassigned ISPN-6733:
-----------------------------------
Assignee: Anna Manukyan
XML Serializer does not serialize attributes for
org.infinispan.persistence.cluster.ClusterLoader
-------------------------------------------------------------------------------------------------
Key: ISPN-6733
URL:
https://issues.jboss.org/browse/ISPN-6733
Project: Infinispan
Issue Type: Bug
Components: Configuration
Reporter: Anna Manukyan
Assignee: Anna Manukyan
When the clusterLoader is configured using {{store}} tag, the specified attributes are
not parsed to the new version xml.
The following xml:
{code}
.................................................
<namedCache name="withClusterLoader1">
<persistence>
<store class="org.infinispan.persistence.cluster.ClusterLoader"
preload="true" fetchPersistentState="true"
ignoreModifications="true" purgeOnStartup="true"
shared="true">
<properties>
<property name="remoteCallTimeout"
value="15000" />
</properties>
</store>
</persistence>
</namedCache>
.....................
{code}
is parsed to:
{code}
...............................
<local-cache name="withClusterLoader1" statistics="false">
<persistence>
<cluster-loader remote-timeout="15000">
<property name="remoteCallTimeout">
15000
</property>
</cluster-loader>
</persistence>
</local-cache>
.............................
{code}