[infinispan-issues] [JBoss JIRA] (ISPN-6733) XML Serializer does not serialize attributes for org.infinispan.persistence.cluster.ClusterLoader

Anna Manukyan (JIRA) issues at jboss.org
Tue May 31 04:51:00 EDT 2016


Anna Manukyan created ISPN-6733:
-----------------------------------

             Summary: 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


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}



--
This message was sent by Atlassian JIRA
(v6.4.11#64026)


More information about the infinispan-issues mailing list