]
Durgesh Anaokar updated ISPN-12343:
-----------------------------------
Git Pull Request:
Transport stack default value always set to `tcp`
-------------------------------------------------
Key: ISPN-12343
URL:
https://issues.redhat.com/browse/ISPN-12343
Project: Infinispan
Issue Type: Bug
Components: Configuration
Affects Versions: 12.0.0.Dev03, 11.0.3.Final
Reporter: Ryan Emerson
Assignee: Tristan Tarrant
Priority: Major
The default transport configuration in the server is the following:
{code:java}
<cache-container name="default" statistics="true">
<transport cluster="${infinispan.cluster.name}"
stack="${infinispan.cluster.stack:tcp}"
node-name="${infinispan.node.name:}"/>
</cache-container>
{code}
If the xml is updated so that {{ stack="${infinispan.cluster.stack:udp}" }} and
the property is not set on launch, the "tcp" stack is still loaded instead of
"udp".
Conversely, simply specifying {{stack="udp"}} works as expected, with the
"udp" stack loaded.