for TCP client, dont set socket option

This commit is contained in:
Jeff Tao 2020-05-24 06:12:32 +00:00
parent b128febbdc
commit 3a7570d21b
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ int taosOpenTcpClientSocket(uint32_t destIp, uint16_t destPort, uint32_t clientI
sockFd = -1;
}
taosKeepTcpAlive(sockFd);
// taosKeepTcpAlive(sockFd);
return sockFd;
}