remove socket read timeout

This commit is contained in:
Craig Raw 2021-04-28 13:03:58 +02:00
parent 11a3bfd893
commit 0593c764b6

View file

@ -24,7 +24,6 @@ public class TcpTransport implements Transport, Closeable {
public static final int DEFAULT_PORT = 50001;
private static final int[] READ_TIMEOUT_SECS = {3, 8, 16, 34};
public static final int SOCKET_READ_TIMEOUT = 60000;
protected final HostAndPort server;
protected final SocketFactory socketFactory;
@ -194,7 +193,6 @@ public class TcpTransport implements Transport, Closeable {
public void connect() throws ServerException {
try {
socket = createSocket();
socket.setSoTimeout(SOCKET_READ_TIMEOUT);
running = true;
} catch(SSLHandshakeException e) {
throw new TlsServerException(server, e);