[
https://issues.jboss.org/browse/WFLY-9223?page=com.atlassian.jira.plugin....
]
Paul Ferraro moved JBEAP-12726 to WFLY-9223:
--------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-9223 (was: JBEAP-12726)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: Clustering
(was: Clustering)
Affects Version/s: 11.0.0.Beta1
(was: 7.1.0.ER3)
fix comment formatting for "concurrent" cache in *ha.xml
profiles
-----------------------------------------------------------------
Key: WFLY-9223
URL:
https://issues.jboss.org/browse/WFLY-9223
Project: WildFly
Issue Type: Bug
Components: Clustering
Affects Versions: 11.0.0.Beta1
Reporter: Paul Ferraro
Assignee: Paul Ferraro
Labels: eap7.1-ok-for-CR1
The current state (taken from standalone-ha.xml):
{code:xml}
<cache-container name="web" default-cache="dist"
module="org.wildfly.clustering.web.infinispan">
...
<!-- Alternate configuration to reduce lock contention for
applications that make use of concurrent access to a web session -->
<!-- Web sessions will be locked more frequently, but for shorter
periods of time -->
<!--
~ distributed-cache name="concurrent">
~ <file-store/>
~ </distributed-cache
-->
</cache-container>
{code}
After uncommenting, the resulting text is not a valid xml file.
Please change it to:
{code:xml}
<cache-container name="web" default-cache="dist"
module="org.wildfly.clustering.web.infinispan">
...
<!-- Alternate configuration to reduce lock contention for
applications that make use of concurrent access to a web session -->
<!-- Web sessions will be locked more frequently, but for shorter
periods of time -->
<!--
<distributed-cache name="concurrent">
<file-store/>
</distributed-cache>
-->
</cache-container>
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)