[jboss-cvs] JBossAS SVN: r75717 - branches/Branch_4_2/cluster/src/main/org/jboss/proxy/ejb.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 11 15:08:56 EDT 2008


Author: bstansberry at jboss.com
Date: 2008-07-11 15:08:56 -0400 (Fri, 11 Jul 2008)
New Revision: 75717

Modified:
   branches/Branch_4_2/cluster/src/main/org/jboss/proxy/ejb/ProxyFactoryHA.java
Log:
[JBAS-5650] Minor merge from JBPAPP branch

Modified: branches/Branch_4_2/cluster/src/main/org/jboss/proxy/ejb/ProxyFactoryHA.java
===================================================================
--- branches/Branch_4_2/cluster/src/main/org/jboss/proxy/ejb/ProxyFactoryHA.java	2008-07-11 18:57:58 UTC (rev 75716)
+++ branches/Branch_4_2/cluster/src/main/org/jboss/proxy/ejb/ProxyFactoryHA.java	2008-07-11 19:08:56 UTC (rev 75717)
@@ -45,6 +45,7 @@
  *
  * @author <a href="mailto:bill at burkecentral.com">Bill Burke</a>
  * @author Scott.Stark at jboss.org
+ * @author <a href="mailto:galder.zamarreno at jboss.com">Galder Zamarreno</a>
  * @version $Revision$
  */
 public class ProxyFactoryHA 
@@ -205,10 +206,18 @@
       {
          if (homeInvoker instanceof InvokerProxyHA)
          {
+            if (log.isTraceEnabled())
+            {
+               log.trace("Updating home proxy with new replicants " + target.getReplicants() + ", view=" + target.getCurrentViewId ());
+            }
             ((InvokerProxyHA)homeInvoker).updateClusterInfo (target.getReplicants(), target.getCurrentViewId ());
          }
          if (beanInvoker instanceof InvokerProxyHA)
          {
+            if (log.isTraceEnabled())
+            {
+               log.trace("Updating bean proxy with new replicants " + target.getReplicants() + ", view=" + target.getCurrentViewId ());
+            }
             ((InvokerProxyHA)beanInvoker).updateClusterInfo (target.getReplicants(), target.getCurrentViewId ());
          }
 




More information about the jboss-cvs-commits mailing list