Merge pull request #2017 from taosdata/hotfix/tcpClient

for TCP client, dont set socket option
This commit is contained in:
Shengliang Guan 2020-05-24 17:52:17 +08:00 committed by GitHub
commit 69ff10db2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}