fix(stream): disable halt.

This commit is contained in:
Haojun Liao 2024-02-27 11:25:32 +08:00
parent 80d027da19
commit 402a43bf67
1 changed files with 1 additions and 1 deletions

View File

@ -1178,7 +1178,7 @@ int32_t tqProcessTaskCheckPointSourceReq(STQ* pTq, SRpcMsg* pMsg, SRpcMsg* pRsp)
// ASSERT(status == TASK_STATUS__HALT); // ASSERT(status == TASK_STATUS__HALT);
if (status != TASK_STATUS__HALT) { if (status != TASK_STATUS__HALT) {
tqError("s-task:%s should in halt status, let's halt it directly", pTask->id.idStr); tqError("s-task:%s should in halt status, let's halt it directly", pTask->id.idStr);
streamTaskHandleEvent(pTask->status.pSM, TASK_EVENT_HALT); // streamTaskHandleEvent(pTask->status.pSM, TASK_EVENT_HALT);
} }
} }