Commit 355b1b6a authored by qetu3790's avatar qetu3790 Committed by Oran Agra
Browse files

Set TCP keepalive on inbound clusterbus connections (#9230)

Set TCP keepalive on inbound clusterbus connections to prevent memory leak

(cherry picked from commit f03af47a)
parent d6f42732
......@@ -707,6 +707,7 @@ void clusterAcceptHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
}
connNonBlock(conn);
connEnableTcpNoDelay(conn);
connKeepAlive(conn,server.cluster_node_timeout * 2);
/* Use non-blocking I/O for cluster messages. */
serverLog(LL_VERBOSE,"Accepting cluster node connection from %s:%d", cip, cport);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment