ARTEMIS-845 Making Default Acceptor Protocols a bit more clear on default config

https://issues.apache.org/jira/browse/ARTEMIS-845
This commit is contained in:
Clebert Suconic 2016-11-09 14:33:26 -05:00
parent b8104f6b7e
commit 3b45435c76
1 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,9 @@ ${connector-config.settings}
<global-max-size>104857600</global-max-size>
<acceptors>
<!-- Default ActiveMQ Artemis Acceptor. Multi-protocol adapter. Currently supports ActiveMQ Artemis Core, OpenWire, STOMP, AMQP, MQTT, and HornetQ Core. -->
<!-- performance tests have shown that openWire performs best with these buffer sizes -->
<acceptor name="artemis">tcp://${host}:${default.port}?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576</acceptor>
<!-- Acceptor for every supported protocol -->
<acceptor name="artemis">tcp://${host}:${default.port}?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE</acceptor>
${amqp-acceptor}${stomp-acceptor}${hornetq-acceptor}${mqtt-acceptor}
</acceptors>