Repository: activemq-artemis
Updated Branches:
refs/heads/master b30a7b004 -> c45017a64
changed doc to reflect examples usage
using connector-name attribute got the following exception, -
'AMQ214019: Invalid configuration: org.xml.sax.SAXParseException; cvc-type.3.1.1: Element
'connector-ref' is a simple type,
so it cannot have attributes, excepting those whose namespace name is identical to
'http://www.w3.org/2001/XMLSchema-instance' and whose [local name] is one of 'type',
'nil', 'schemaLocation' or 'noNamespaceSchemaLocation'. However, the attribute, 'connector-name'
was found.'
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/bea8545f
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/bea8545f
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/bea8545f
Branch: refs/heads/master
Commit: bea8545ffcc0ed18cb472bb424c4fcf2a0dd5941
Parents: f182c80
Author: Pat Fox <pfox@redhat.com>
Authored: Thu Jun 2 18:03:51 2016 +0200
Committer: Clebert Suconic <clebertsuconic@apache.org>
Committed: Thu Jun 2 15:04:33 2016 -0400
----------------------------------------------------------------------
docs/user-manual/en/clusters.md | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/bea8545f/docs/user-manual/en/clusters.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/clusters.md b/docs/user-manual/en/clusters.md
index fc5c04a..788d1e4 100644
--- a/docs/user-manual/en/clusters.md
+++ b/docs/user-manual/en/clusters.md
@@ -98,7 +98,7 @@ Let's take a look at an example broadcast group from
<group-address>231.7.7.7</group-address>
<group-port>9876</group-port>
<broadcast-period>2000</broadcast-period>
- <connector-ref connector-name="netty-connector"/>
+ <connector-ref>netty-connector</connector-ref>
</broadcast-group>
</broadcast-groups>
@@ -138,8 +138,7 @@ clarity. Let's discuss each one in turn:
- `connector-ref`. This specifies the connector and optional backup
connector that will be broadcasted (see [Configuring the Transport](configuring-transports.md)
for more information on
- connectors). The connector to be broadcasted is specified by the
- `connector-name` attribute.
+ connectors).
Here is another example broadcast group that defines a JGroups broadcast
group:
|