Increase CREATE_SOCKET_TIMEOUT_MILLIS

This commit is contained in:
Manfred Karrer 2016-06-13 20:12:51 +02:00
parent e18c8c0bf8
commit 50d360c67d

View File

@ -31,7 +31,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
// Run in UserThread
public abstract class NetworkNode implements MessageListener {
private static final Logger log = LoggerFactory.getLogger(NetworkNode.class);
private static final int CREATE_SOCKET_TIMEOUT_MILLIS = 5000;
private static final int CREATE_SOCKET_TIMEOUT_MILLIS = 10000;
final int servicePort;