Revert "HBASE-11492 The servers do not honor the tcpNoDelay option"

This reverts commit c80b451044.
This commit is contained in:
Nicolas Liochon 2014-07-11 18:43:46 +02:00
parent c80b451044
commit daa16b9c4d
1 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,6 @@ import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.SocketException;
import java.net.StandardSocketOptions;
import java.net.UnknownHostException;
import java.nio.ByteBuffer;
import java.nio.channels.CancelledKeyException;
@ -753,7 +752,7 @@ public class RpcServer implements RpcServerInterface {
while ((channel = server.accept()) != null) {
try {
channel.configureBlocking(false);
channel.setOption(StandardSocketOptions.TCP_NODELAY, tcpNoDelay);
channel.socket().setTcpNoDelay(tcpNoDelay);
channel.socket().setKeepAlive(tcpKeepAlive);
} catch (IOException ioe) {
channel.close();