handle quit except

This commit is contained in:
yihaoDeng 2022-03-24 16:38:23 +08:00
parent e0524091fb
commit c563dccbb8
1 changed files with 3 additions and 0 deletions

View File

@ -838,6 +838,9 @@ void transSendResponse(const STransMsg* pMsg) {
}
SSrvConn* pConn = pMsg->handle;
SWorkThrdObj* pThrd = pConn->hostThrd;
if (pThrd->quit) {
return;
}
SSrvMsg* srvMsg = calloc(1, sizeof(SSrvMsg));
srvMsg->pConn = pConn;