[infinispan-issues] [JBoss JIRA] (ISPN-2425) Amend the xsite configuration and the xsd

Mircea Markus (JIRA) jira-events at lists.jboss.org
Thu Oct 18 21:53:01 EDT 2012


Mircea Markus created ISPN-2425:
-----------------------------------

             Summary: Amend the xsite configuration and the xsd
                 Key: ISPN-2425
                 URL: https://issues.jboss.org/browse/ISPN-2425
             Project: Infinispan
          Issue Type: Feature Request
    Affects Versions: 5.2.0.Beta2
            Reporter: Mircea Markus
            Assignee: Mircea Markus
             Fix For: 5.2.0.CR1


Change:
{code:xml}
<global>
  ...
  <sites local="LON"/>
  ...
</global>
{code}
to
{code:xml}
<global>
  ...
  <site name="LON"/>
  ...
</global>
{code}

And:

{code:xml}
     <backups backupSites="NYC,SFO">
       <backup site="NYC" backupFailurePolicy="WARN" strategy="SYNC" timeout="12000"/>
       <backup site="SFO" backupFailurePolicy="IGNORE" strategy="ASYNC"/>
       <backup site="LON" strategy="SYNC"/>
     </backups>
{code}

to:
{code:xml}
     <backups>
       <backup site="NYC" failurePolicy="WARN" strategy="SYNC" timeout="12000" enabled="true"/>
       <backup site="SFO" failurePolicy="IGNORE" strategy="ASYNC" enabled="true"/>
       <backup site="LON" strategy="SYNC" enabled="false"/>
     </backups>
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the infinispan-issues mailing list