]
Ryan Emerson resolved ISPN-12636.
---------------------------------
Resolution: Done
Implicit connectors for the single-port endpoint
------------------------------------------------
Key: ISPN-12636
URL:
https://issues.redhat.com/browse/ISPN-12636
Project: Infinispan
Issue Type: Enhancement
Components: Server
Reporter: Tristan Tarrant
Assignee: Tristan Tarrant
Priority: Major
Fix For: 12.1.0.Final, 12.0.1.Final
The server configuration can be simplified by removing the need to explicitly define the
individual connectors in a single-port endpoint.
{code:xml}
<endpoints socket-binding="default" security-realm="default"/>
{code}
would be equivalent to the current
{code:xml}
<endpoints socket-binding="default" security-realm="default">
<hotrod-connector name="hotrod"/>
<rest-connector name="rest"/>
</endpoints>
{code}