change log

This commit is contained in:
yihaoDeng 2021-04-01 05:32:09 +08:00
parent 524b708079
commit c001a86a08
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ SOCKET taosOpenTcpClientSocket(uint32_t destIp, uint16_t destPort, uint32_t clie
int res = poll(wfd, 1, TCP_CONN_TIMEOUT); int res = poll(wfd, 1, TCP_CONN_TIMEOUT);
if (res == -1 || res == 0) { if (res == -1 || res == 0) {
uError("failed to connect socket, ip:0x%x, port:%hu(poll error or conn timeout)", destIp, destPort); uError("failed to connect socket, ip:0x%x, port:%hu(poll error/conn timeout)", destIp, destPort);
taosCloseSocket(sockFd); // taosCloseSocket(sockFd); //
return -1; return -1;
} }