Minimize redundant logs

This commit is contained in:
Yihao Deng 2024-07-15 03:26:45 +00:00
parent a1f23648b7
commit 3414738b63
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ static bool uvHandleReq(SSvrConn* pConn) {
transMsg.info.traceId = pHead->traceId;
transMsg.info.cliVer = htonl(pHead->compatibilityVer);
transMsg.info.forbiddenIp = forbiddenIp;
transMsg.info.noResp = pHead->noResp;
transMsg.info.noResp = pHead->noResp == 1 ? 1 : 0;
tGTrace("%s handle %p conn:%p translated to app, refId:%" PRIu64, transLabel(pTransInst), transMsg.info.handle, pConn,
pConn->refId);