Author: jstrachan
Date: Tue Dec 13 08:24:28 2005
New Revision: 356525
URL: http://svn.apache.org/viewcvs?rev=356525&view=rev
Log:
fixed bad configuration file for the release
Modified:
incubator/activemq/trunk/assembly/src/release/conf/activemq.xml
Modified: incubator/activemq/trunk/assembly/src/release/conf/activemq.xml
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/assembly/src/release/conf/activemq.xml?rev=356525&r1=356524&r2=356525&view=diff
==============================================================================
--- incubator/activemq/trunk/assembly/src/release/conf/activemq.xml (original)
+++ incubator/activemq/trunk/assembly/src/release/conf/activemq.xml Tue Dec 13 08:24:28 2005
@@ -3,7 +3,7 @@
<broker useJmx="true">
- <!-- In ActiveMQ 4, you can setup destination policies. note: this xml format may still
change a bit -->
+ <!-- In ActiveMQ 4, you can setup destination policies -->
<destinationPolicy>
<policyMap><policyEntries>
@@ -30,13 +30,18 @@
<transportConnectors>
<!-- prefixing a connector with discovery: causes the connector to be advertiesed
over rendezvous -->
+ <!--
<transportConnector uri="discovery:tcp://localhost:61616"/>
+ -->
+ <transportConnector uri="tcp://localhost:61616"/>
</transportConnectors>
<networkConnectors>
<!-- by default just auto discover the other brokers -->
- <networkConnector uri="multicast"/>
+ <networkConnector uri="rendezvous://default"/>
+
<!--
+ <networkConnector uri="multicast"/>
<networkConnector uri="static://(tcp://host1:61616,tcp://host2:61616)"/>
-->
</networkConnectors>
|