[jboss-remoting-commits] JBoss Remoting SVN: r4227 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Thu May 22 18:31:52 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-05-22 18:31:52 -0400 (Thu, 22 May 2008)
New Revision: 4227

Modified:
   remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java
   remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/ServerThread.java
Log:
JBREM-982: Sets useOnewayConnectionTimeout = true as default..

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java	2008-05-22 05:34:55 UTC (rev 4226)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java	2008-05-22 22:31:52 UTC (rev 4227)
@@ -212,7 +212,7 @@
    protected int numberOfCallRetries;
    protected int maxPoolSize;
    protected int onewayConnectionTimeout;
-   protected boolean useOnewayConnectionTimeout = false;
+   protected boolean useOnewayConnectionTimeout = true;
 
    /**
     * Pool for this invoker. This is shared between all instances of proxies attached to a specific

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/ServerThread.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/ServerThread.java	2008-05-22 05:34:55 UTC (rev 4226)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/ServerThread.java	2008-05-22 22:31:52 UTC (rev 4227)
@@ -149,7 +149,7 @@
    
    private boolean reuseAfterTimeout;
 
-   private boolean useOnewayConnectionTimeout = false;
+   private boolean useOnewayConnectionTimeout = true;
 
    // Constructors ---------------------------------------------------------------------------------
 




More information about the jboss-remoting-commits mailing list