Hello Team,
when creating an instance ofaremis broker 2.21.2 in the broker create
script iI have defined
export ARGS="$ARGS --no-amqp-acceptor true"
export ARGS="$ARGS --no-hornetq-acceptor true"
export ARGS="$ARGS --no-mqtt-acceptor true"
export ARGS="$ARGS --no-stomp-acceptor true"
since only core and openwire are currently needed. Expecting as a result::
<acceptor name="artemis"> ... ;protocols=CORE,OPENWIRE; ...
</acceptor>
But actually it gets in the broker.xml
<acceptor name="artemis"> ...
;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE; ... </acceptor>
I have removed the "true" values, leaving the option names only, but the
same result.
Thank You in advance.
Herbert