[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/socket ...

Tom Elrod tom.elrod at jboss.com
Sun Jul 23 22:07:56 EDT 2006


  User: telrod  
  Date: 06/07/23 22:07:56

  Modified:    src/main/org/jboss/remoting/transport/socket 
                        MicroSocketClientInvoker.java
  Log:
  JBREM-553 - fix for abstract detector ping using connection validator holding pool lock too long.
  
  Revision  Changes    Path
  1.12      +2 -2      JBossRemoting/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MicroSocketClientInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- MicroSocketClientInvoker.java	19 Jul 2006 16:39:17 -0000	1.11
  +++ MicroSocketClientInvoker.java	24 Jul 2006 02:07:56 -0000	1.12
  @@ -30,7 +30,7 @@
    *
    * @author <a href="mailto:jhaynie at vocalocity.net">Jeff Haynie</a>
    * @author <a href="mailto:telrod at e2technologies.net">Tom Elrod</a>
  - * @version $Revision: 1.11 $
  + * @version $Revision: 1.12 $
    */
   public class MicroSocketClientInvoker extends RemoteClientInvoker
   {
  @@ -676,7 +676,7 @@
                  catch (Exception ex)
                  {
                     log.debug(ex);
  -                  if (i + 1 < MAX_RETRIES)
  +                  if (i + 1 < numberOfRetries)
                     {
                        Thread.sleep(1);
                        continue;
  
  
  



More information about the jboss-cvs-commits mailing list