disabled the inactivity monitor by default for now.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@382954 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-03-03 22:54:52 +00:00
parent 1882e545a5
commit 375469bac7
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ public class TcpTransport extends TransportThreadSupport implements Transport, S
private boolean trace;
private boolean useLocalHost = true;
private int minmumWireFormatVersion;
private long maxInactivityDuration = 30000;
private long maxInactivityDuration = 0; //30000;
private InetSocketAddress socketAddress;
/**

View File

@ -48,7 +48,7 @@ public class TcpTransportServer extends TransportServerThreadSupport {
private int backlog = 5000;
private WireFormatFactory wireFormatFactory = new OpenWireFormatFactory();
private TcpTransportFactory transportFactory = new TcpTransportFactory();
private long maxInactivityDuration = 30000;
private long maxInactivityDuration = 0; //30000;
private int minmumWireFormatVersion;
private boolean trace;