]
Radoslav Husar commented on WFLY-9223:
--------------------------------------
+1 for removing, the right place is in the documentation.
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
Fix For: 11.0.0.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}