You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2010/11/16 16:00:57 UTC

svn commit: r1035649 - /activemq/activemq-apollo/trunk/apollo-tcp/src/main/java/org/apache/activemq/apollo/transport/tcp/TcpTransportServer.java

Author: chirino
Date: Tue Nov 16 15:00:57 2010
New Revision: 1035649

URL: http://svn.apache.org/viewvc?rev=1035649&view=rev
Log:
Don't need such a big connection backlog.

Modified:
    activemq/activemq-apollo/trunk/apollo-tcp/src/main/java/org/apache/activemq/apollo/transport/tcp/TcpTransportServer.java

Modified: activemq/activemq-apollo/trunk/apollo-tcp/src/main/java/org/apache/activemq/apollo/transport/tcp/TcpTransportServer.java
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-tcp/src/main/java/org/apache/activemq/apollo/transport/tcp/TcpTransportServer.java?rev=1035649&r1=1035648&r2=1035649&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-tcp/src/main/java/org/apache/activemq/apollo/transport/tcp/TcpTransportServer.java (original)
+++ activemq/activemq-apollo/trunk/apollo-tcp/src/main/java/org/apache/activemq/apollo/transport/tcp/TcpTransportServer.java Tue Nov 16 15:00:57 2010
@@ -47,7 +47,7 @@ public class TcpTransportServer implemen
     private URI connectURI;
     private DispatchQueue dispatchQueue;
     private DispatchSource acceptSource;
-    private int backlog = 500;
+    private int backlog = 100;
     private Map<String, Object> transportOptions;
 
     public TcpTransportServer(URI location) {