Network: Default (back) network.tcp.connect_timeout to 30s, closes #1134.

This commit is contained in:
kimchy 2011-07-20 00:37:32 +03:00
parent 5ccdd4d3d3
commit cbb1c35f94
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class NetworkService extends AbstractComponent {
public static final ByteSizeValue TCP_DEFAULT_SEND_BUFFER_SIZE = new ByteSizeValue(32, ByteSizeUnit.KB);
public static final ByteSizeValue TCP_DEFAULT_RECEIVE_BUFFER_SIZE = new ByteSizeValue(32, ByteSizeUnit.KB);
public static final TimeValue TCP_DEFAULT_CONNECT_TIMEOUT = new TimeValue(2, TimeUnit.SECONDS);
public static final TimeValue TCP_DEFAULT_CONNECT_TIMEOUT = new TimeValue(30, TimeUnit.SECONDS);
}
/**