Github user clebertsuconic commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1830#discussion_r165077949
--- Diff:
artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/broker.xml
---
@@ -78,7 +78,7 @@ ${global-max-section}
<!-- amqpLowCredits: The server will send the # credits specified
at amqpCredits at this low mark -->
<!-- Acceptor for every supported protocol -->
- <acceptor
name="artemis">tcp://${host}:${default.port}?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300</acceptor>
+ <acceptor
name="artemis">tcp://${host}:${default.port}?anycastPrefix=jms.queue.;multicastPrefix=jms.topic.;tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300</acceptor>
--- End diff --
@jbertram we could have this commented out... like.. if you have old
acceptors. use this configuration...
but we can't have this by default.
We can change the compatiblity tests to add prefixes and make sure they
work together.
---