[jboss-cvs] JBossAS SVN: r62946 - branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 9 14:01:34 EDT 2007


Author: bstansberry at jboss.com
Date: 2007-05-09 14:01:33 -0400 (Wed, 09 May 2007)
New Revision: 62946

Modified:
   branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/JBAS4406UnitTestCase.java
   branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/PartitionRestartUnitTestCase.java
Log:
[JBAS-4406] Use 'jboss.jgroups' instead of 'jgroups.mux' as domain; these aren't mux channels

Modified: branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/JBAS4406UnitTestCase.java
===================================================================
--- branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/JBAS4406UnitTestCase.java	2007-05-09 15:39:13 UTC (rev 62945)
+++ branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/JBAS4406UnitTestCase.java	2007-05-09 18:01:33 UTC (rev 62946)
@@ -108,13 +108,13 @@
    
    protected Set getChannelMBeans(RMIAdaptor adaptor) throws Exception
    {
-      ObjectName on = new ObjectName("jgroups.mux:type=channel,cluster=JBAS4406Partition");
+      ObjectName on = new ObjectName("jboss.jgroups:type=channel,cluster=JBAS4406Partition");
       return adaptor.queryNames(on, null);
    }
    
    protected Set getProtocolMBeans(RMIAdaptor adaptor) throws Exception
    {
-      ObjectName on = new ObjectName("jgroups.mux:*,type=protocol,cluster=JBAS4406Partition");
+      ObjectName on = new ObjectName("jboss.jgroups:*,type=protocol,cluster=JBAS4406Partition");
       return adaptor.queryNames(on, null);
    }
 }

Modified: branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/PartitionRestartUnitTestCase.java
===================================================================
--- branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/PartitionRestartUnitTestCase.java	2007-05-09 15:39:13 UTC (rev 62945)
+++ branches/Branch_4_2/testsuite/src/main/org/jboss/test/cluster/partition/test/PartitionRestartUnitTestCase.java	2007-05-09 18:01:33 UTC (rev 62946)
@@ -158,13 +158,13 @@
    
    protected Set getChannelMBeans(RMIAdaptor adaptor) throws Exception
    {
-      ObjectName on = new ObjectName("jgroups.mux:type=channel,cluster=DefaultPartition");
+      ObjectName on = new ObjectName("jboss.jgroups:type=channel,cluster=DefaultPartition");
       return adaptor.queryNames(on, null);
    }
    
    protected Set getProtocolMBeans(RMIAdaptor adaptor) throws Exception
    {
-      ObjectName on = new ObjectName("jgroups.mux:*,type=protocol,cluster=DefaultPartition");
+      ObjectName on = new ObjectName("jboss.jgroups:*,type=protocol,cluster=DefaultPartition");
       return adaptor.queryNames(on, null);
    }
 




More information about the jboss-cvs-commits mailing list