(logger, repImpl, "Feeder accepted connection from " + channel);
final int timeoutMs = repNode.getConfigManager().
getDuration(RepParams.PRE_HEARTBEAT_TIMEOUT);
/* Disable Nagle's algorithm. */
channel.socket().setTcpNoDelay(true);
return new NamedChannelWithTimeout(repNode, channel, timeoutMs);
} catch (IOException e) {
LoggerUtils.warning(logger, repImpl,
"IO exception while configuring channel " +
"Exception:" + e.getMessage());
throw e;