Repository: activemq-artemis Updated Branches: refs/heads/master 9a60baf92 -> c709d7b8c
NO-JIRA: fixing example configuration Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/52550541 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/52550541 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/52550541 Branch: refs/heads/master Commit: 52550541446c41b9296d44c193fd3c4495a655c8 Parents: 9a60baf Author: Andy Taylor <[email protected]> Authored: Fri Nov 25 09:33:09 2016 +0000 Committer: Clebert Suconic <[email protected]> Committed: Mon Nov 28 09:06:06 2016 -0500 ---------------------------------------------------------------------- .../src/main/resources/activemq/server0/broker.xml | 2 ++ .../src/main/resources/activemq/server1/broker.xml | 4 +++- .../src/main/resources/activemq/server2/broker.xml | 4 +++- 3 files changed, 8 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/52550541/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server0/broker.xml ---------------------------------------------------------------------- diff --git a/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server0/broker.xml b/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server0/broker.xml index 3e86ed3..006b2ca 100644 --- a/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server0/broker.xml +++ b/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server0/broker.xml @@ -26,6 +26,8 @@ <core xmlns="urn:activemq:core"> + <name>broker0</name> + <bindings-directory>./data/bindings</bindings-directory> <journal-directory>./data/journal</journal-directory> http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/52550541/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server1/broker.xml ---------------------------------------------------------------------- diff --git a/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server1/broker.xml b/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server1/broker.xml index 1464ea9..e1ec02b 100644 --- a/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server1/broker.xml +++ b/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server1/broker.xml @@ -26,6 +26,8 @@ <core xmlns="urn:activemq:core"> + <name>broker1</name> + <bindings-directory>./data/bindings</bindings-directory> <journal-directory>./data/journal</journal-directory> @@ -54,7 +56,7 @@ <retry-interval>500</retry-interval> <use-duplicate-detection>true</use-duplicate-detection> <message-load-balancing>STRICT</message-load-balancing> - <max-hops>2</max-hops> + <max-hops>1</max-hops> <static-connectors allow-direct-connections-only="true"> <connector-ref>server2-connector</connector-ref> </static-connectors> http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/52550541/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server2/broker.xml ---------------------------------------------------------------------- diff --git a/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server2/broker.xml b/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server2/broker.xml index b1043f5..2585fba 100644 --- a/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server2/broker.xml +++ b/examples/features/clustered/clustered-static-oneway/src/main/resources/activemq/server2/broker.xml @@ -26,6 +26,8 @@ <core xmlns="urn:activemq:core"> + <name>broker2</name> + <bindings-directory>./data/bindings</bindings-directory> <journal-directory>./data/journal</journal-directory> @@ -52,7 +54,7 @@ <retry-interval>500</retry-interval> <use-duplicate-detection>true</use-duplicate-detection> <message-load-balancing>STRICT</message-load-balancing> - <max-hops>2</max-hops> + <max-hops>0</max-hops> </cluster-connection> </cluster-connections>
