[jboss-cvs] JBoss Messaging SVN: r5539 - branches/Branch_1_4/integration/AS5/etc/server/default/deploy.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Dec 18 10:57:51 EST 2008
Author: clebert.suconic at jboss.com
Date: 2008-12-18 10:57:51 -0500 (Thu, 18 Dec 2008)
New Revision: 5539
Modified:
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/db2-persistence-service.xml
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mssql-persistence-service.xml
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mysql-persistence-service.xml
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/ndb-persistence-service.xml
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/null-persistence-service.xml
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/oracle-persistence-service.xml
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/postgresql-persistence-service.xml
branches/Branch_1_4/integration/AS5/etc/server/default/deploy/sybase-persistence-service.xml
Log:
JBMESSAGING-1471 & JBAS-6333 - fixing the dependency on ChannelFactory for JBoss5
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/db2-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/db2-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/db2-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -150,7 +150,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mssql-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mssql-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mssql-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -146,7 +146,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mysql-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mysql-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/mysql-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -146,7 +146,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/ndb-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/ndb-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/ndb-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -148,7 +148,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/null-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/null-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/null-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -53,7 +53,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/oracle-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/oracle-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/oracle-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -150,7 +150,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/postgresql-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/postgresql-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/postgresql-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -146,7 +146,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
Modified: branches/Branch_1_4/integration/AS5/etc/server/default/deploy/sybase-persistence-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/server/default/deploy/sybase-persistence-service.xml 2008-12-18 12:30:25 UTC (rev 5538)
+++ branches/Branch_1_4/integration/AS5/etc/server/default/deploy/sybase-persistence-service.xml 2008-12-18 15:57:51 UTC (rev 5539)
@@ -151,7 +151,7 @@
<attribute name="FailoverOnNodeLeave">false</attribute>
- <depends optional-attribute-name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</depends>
+ <attribute name="ChannelFactoryName">jboss.jgroups:service=ChannelFactory</attribute>
<attribute name="ControlChannelName">jbm-control</attribute>
<attribute name="DataChannelName">jbm-data</attribute>
<attribute name="ChannelPartitionName">${jboss.partition.name:DefaultPartition}-JMS</attribute>
More information about the jboss-cvs-commits
mailing list