[jboss-cvs] JBossAS SVN: r58560 - trunk/cluster/src/main/org/jboss/cache/invalidation/bridges

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Nov 18 06:23:12 EST 2006


Author: bstansberry at jboss.com
Date: 2006-11-18 06:23:12 -0500 (Sat, 18 Nov 2006)
New Revision: 58560

Modified:
   trunk/cluster/src/main/org/jboss/cache/invalidation/bridges/JGCacheInvalidationBridge.java
Log:
Use the correct property for getting partition name

Modified: trunk/cluster/src/main/org/jboss/cache/invalidation/bridges/JGCacheInvalidationBridge.java
===================================================================
--- trunk/cluster/src/main/org/jboss/cache/invalidation/bridges/JGCacheInvalidationBridge.java	2006-11-18 11:22:20 UTC (rev 58559)
+++ trunk/cluster/src/main/org/jboss/cache/invalidation/bridges/JGCacheInvalidationBridge.java	2006-11-18 11:23:12 UTC (rev 58560)
@@ -308,12 +308,12 @@
       else
       {
          this.partition = this.clusterPartition.getHAPartition();
-         this.partitionName = this.partition.getNodeName();
+         this.partitionName = this.partition.getPartitionName();
       }
          
       this.ds = this.partition.getDistributedStateService ();
       this.drm = this.partition.getDistributedReplicantManager ();
-      this.nodeName = this.partition.getNodeName ();
+      this.nodeName = this.partition.getNodeName();
       
       this.drm.add (this.RPC_HANLE_NAME, "");
       this.drm.registerListener (this.RPC_HANLE_NAME, this);      




More information about the jboss-cvs-commits mailing list