You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2012/04/02 01:02:28 UTC

svn commit: r1308209 - in /activemq/activemq-apollo/trunk: apollo-itests/src/test/resources/ apollo-openwire/src/test/resources/ apollo-stomp/src/test/resources/

Author: chirino
Date: Sun Apr  1 23:02:27 2012
New Revision: 1308209

URL: http://svn.apache.org/viewvc?rev=1308209&view=rev
Log:
The test xml files were incorrectly using the name attribute instead of the id attribute.

Modified:
    activemq/activemq-apollo/trunk/apollo-itests/src/test/resources/apollo.xml
    activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-bdb.xml
    activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-leveldb.xml
    activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-secure.xml
    activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-bdb.xml
    activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-custom-dest-delimiters.xml
    activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-leveldb.xml
    activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp.xml

Modified: activemq/activemq-apollo/trunk/apollo-itests/src/test/resources/apollo.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-itests/src/test/resources/apollo.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-itests/src/test/resources/apollo.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-itests/src/test/resources/apollo.xml Sun Apr  1 23:02:27 2012
@@ -20,7 +20,7 @@
 
   <virtual_host id="default" purge_on_startup="true" auto_create_queues="true">
     <host_name>localhost</host_name>
-    <queue name="mirrored.**" mirrored="true"/>
+    <queue id="mirrored.**" mirrored="true"/>
   </virtual_host>
 
   <connector id="tcp" bind="tcp://0.0.0.0:0"/>

Modified: activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-bdb.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-bdb.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-bdb.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-bdb.xml Sun Apr  1 23:02:27 2012
@@ -21,7 +21,7 @@
   <virtual_host id="default">
     <host_name>localhost</host_name>
 
-    <queue name="mirrored.**" mirrored="true"/>
+    <queue id="mirrored.**" mirrored="true"/>
 
     <bdb_store directory="${basedir}/target/test-data"/>
   </virtual_host>

Modified: activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-leveldb.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-leveldb.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-leveldb.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-leveldb.xml Sun Apr  1 23:02:27 2012
@@ -21,7 +21,7 @@
   <virtual_host id="default">
     <host_name>localhost</host_name>
 
-    <queue name="mirrored.**" mirrored="true"/>
+    <queue id="mirrored.**" mirrored="true"/>
 
     <leveldb_store directory="${basedir}/target/test-data"/>
   </virtual_host>

Modified: activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-secure.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-secure.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-secure.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-openwire/src/test/resources/apollo-openwire-secure.xml Sun Apr  1 23:02:27 2012
@@ -27,7 +27,7 @@
     </acl>
 
     <!-- queue security -->
-    <queue name="**" kind="ptp">
+    <queue id="**" kind="ptp">
       <acl>
         <create  allow="can_send_create_queue"/>
         <send    allow="can_send_create_queue"/>
@@ -38,7 +38,7 @@
     </queue>
 
     <!-- topic security -->
-    <destination name="**">
+    <destination id="**">
       <acl>
         <create  allow="can_send_create_topic"/>
         <send    allow="can_send_create_topic"/>
@@ -48,7 +48,7 @@
     </destination>
 
     <!-- durable sub security -->
-    <queue name="**" kind="ds">
+    <queue id="**" kind="ds">
       <acl>
         <create  allow="can_consume_create_ds"/>
         <consume allow="can_consume_create_ds"/>

Modified: activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-bdb.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-bdb.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-bdb.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-bdb.xml Sun Apr  1 23:02:27 2012
@@ -21,7 +21,7 @@
   <virtual_host id="default">
     <host_name>localhost</host_name>
 
-    <queue name="mirrored.**" mirrored="true"/>
+    <queue id="mirrored.**" mirrored="true"/>
 
     <bdb_store directory="${testdatadir}"/>
   </virtual_host>

Modified: activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-custom-dest-delimiters.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-custom-dest-delimiters.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-custom-dest-delimiters.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-custom-dest-delimiters.xml Sun Apr  1 23:02:27 2012
@@ -21,7 +21,7 @@
   <virtual_host id="default">
     <host_name>localhost</host_name>
 
-    <queue name="mirrored.**" mirrored="true"/>
+    <queue id="mirrored.**" mirrored="true"/>
 
   </virtual_host>
 

Modified: activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-leveldb.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-leveldb.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-leveldb.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp-leveldb.xml Sun Apr  1 23:02:27 2012
@@ -21,7 +21,7 @@
   <virtual_host id="default">
     <host_name>localhost</host_name>
 
-    <queue name="mirrored.**" mirrored="true"/>
+    <queue id="mirrored.**" mirrored="true"/>
 
     <leveldb_store directory="${testdatadir}"/>
   </virtual_host>

Modified: activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp.xml?rev=1308209&r1=1308208&r2=1308209&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-stomp/src/test/resources/apollo-stomp.xml Sun Apr  1 23:02:27 2012
@@ -21,8 +21,8 @@
   <virtual_host id="default">
     <host_name>localhost</host_name>
 
-    <queue name="mirrored.**" mirrored="true"/>
-    <topic name="queued.**" slow_consumer_policy="queue"/>
+    <queue id="mirrored.**" mirrored="true"/>
+    <topic id="queued.**" slow_consumer_policy="queue"/>
 
   </virtual_host>