fix(stream): clear the flag.

This commit is contained in:
Haojun Liao 2023-10-21 02:41:03 +08:00
parent 48ff521968
commit 9ebf806789
1 changed files with 3 additions and 0 deletions

View File

@ -311,6 +311,9 @@ void streamTaskResetStatus(SStreamTask* pTask) {
pSM->current = StreamTaskStatusList[TASK_STATUS__UNINIT];
pSM->pActiveTrans = NULL;
taosArrayClear(pSM->pWaitingEventList);
// clear the downstream ready status
pTask->status.downstreamReady = 0;
}
void streamTaskSetStatusReady(SStreamTask* pTask) {