Repository: activemq-artemis Updated Branches: refs/heads/master 7610dadaf -> 498a32863
ARTEMIS-1205: AMQP Shared Durable Subscriber - Document Update Update documents for new configuration toggle for 'amqp-use-core-subscription-naming ' Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/1bfa1ad4 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/1bfa1ad4 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/1bfa1ad4 Branch: refs/heads/master Commit: 1bfa1ad4fe9e6e8fae9346522e58d3e59f7fc2fa Parents: 7610dad Author: Michael Andre Pearce <[email protected]> Authored: Mon Jun 19 23:01:28 2017 +0100 Committer: Michael Andre Pearce <[email protected]> Committed: Mon Jun 19 23:05:10 2017 +0100 ---------------------------------------------------------------------- docs/user-manual/en/configuration-index.md | 1 + docs/user-manual/en/using-AMQP.md | 7 +++++++ 2 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/1bfa1ad4/docs/user-manual/en/configuration-index.md ---------------------------------------------------------------------- diff --git a/docs/user-manual/en/configuration-index.md b/docs/user-manual/en/configuration-index.md index 720cb38..e35ee44 100644 --- a/docs/user-manual/en/configuration-index.md +++ b/docs/user-manual/en/configuration-index.md @@ -44,6 +44,7 @@ Name | Description [acceptors.acceptor](configuring-transports.md "Understanding Acceptors") | Each acceptor is composed for just an URL [address-settings](address-model.md "Configuring Addresses and Queues Via Address Settings") | [a list of address-setting](#address-setting-type) [allow-failback](ha.md "Failing Back to live Server") | Should stop backup on live restart. default true +[amqp-use-core-subscription-naming](using-AMQP.md "Message Conversions") | If true uses CORE queue naming convention for AMQP. default false [async-connection-execution-enabled](connection-ttl.md "Configuring Asynchronous Connection Execution") | If False delivery would be always asynchronous. default true [bindings-directory](persistence.md "Configuring the bindings journal") | The folder in use for the bindings folder [bridges](core-bridges.md "Core Bridges") | [a list of bridge](#bridge-type) http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/1bfa1ad4/docs/user-manual/en/using-AMQP.md ---------------------------------------------------------------------- diff --git a/docs/user-manual/en/using-AMQP.md b/docs/user-manual/en/using-AMQP.md index 7375d27..51967f1 100644 --- a/docs/user-manual/en/using-AMQP.md +++ b/docs/user-manual/en/using-AMQP.md @@ -28,6 +28,13 @@ If you send a body type that is not recognized by this specification the convers So, make sure you follow these conventions if you intend to cross protocols or languages. Especially on the message body. +A compatibility setting, allows aligning the naming convention of AMQP queues (JMS Durable and Shared Subscriptions) with CORE. +For backwards compatibility reasons, you need to explicitly enable this via broker configuration: + +* amqp-use-core-subscription-naming + * true - use queue naming convention that is aligned with CORE. + * false (DEFAULT) - use older naming convention. + # Example
