You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2021/12/01 12:08:27 UTC

[activemq-website] branch main updated: Fix typo in components/artemis/migration-documentation/destinations.html "muticast" -> " multicast"

This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-website.git


The following commit(s) were added to refs/heads/main by this push:
     new dbf8735  Fix typo in components/artemis/migration-documentation/destinations.html "muticast" -> " multicast"
dbf8735 is described below

commit dbf8735b181c95752d918b7cdc0a5b78e90eab1c
Author: jb2martel <32...@users.noreply.github.com>
AuthorDate: Mon Nov 1 13:27:59 2021 +0100

    Fix typo in components/artemis/migration-documentation/destinations.html
    "muticast" -> " multicast"
    
    This closes #68
---
 src/components/artemis/migration-documentation/destinations.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/artemis/migration-documentation/destinations.html b/src/components/artemis/migration-documentation/destinations.html
index df1926b..9671523 100644
--- a/src/components/artemis/migration-documentation/destinations.html
+++ b/src/components/artemis/migration-documentation/destinations.html
@@ -298,7 +298,7 @@
      <span class="hljs-tag">&lt;<span class="hljs-name">topic</span> <span class="hljs-attr">physicalName</span>=<span class="hljs-string">&quot;my-topic&quot;</span> /&gt;</span>
 <span class="hljs-tag">&lt;/<span class="hljs-name">destinations</span>&gt;</span>
 </code></pre>
-<p>Things looks a bit different in Artemis. We already explained that queues are <code>anycast</code> addresses and topics are <code>muticast</code> ones. We&apos;re not gonna go deep into the address settings details here and you&apos;re advised to look at the user manual for that. Let&apos;s just see what we need to do in order to replicate ActiveMQ configuration. </p>
+<p>Things looks a bit different in Artemis. We already explained that queues are <code>anycast</code> addresses and topics are <code>multicast</code> ones. We&apos;re not gonna go deep into the address settings details here and you&apos;re advised to look at the user manual for that. Let&apos;s just see what we need to do in order to replicate ActiveMQ configuration. </p>
 <p>Addresses are defined in <code>&lt;addresses&gt;</code> section of the <code>etc/broker.xml</code> configuration file. So the corresponding Artemis configuration for the ActiveMQ example above, looks like this:</p>
 <pre><code class="lang-xml"><span class="hljs-tag">&lt;<span class="hljs-name">addresses</span>&gt;</span>    
     <span class="hljs-tag">&lt;<span class="hljs-name">address</span> <span class="hljs-attr">name</span>=<span class="hljs-string">&quot;my-queue&quot;</span>&gt;</span>