fix(stream): set the output normal for stream dispatch when encountering the transfer state.

This commit is contained in:
Haojun Liao 2023-09-18 18:25:22 +08:00
parent 636eccc160
commit 734f648891
1 changed files with 2 additions and 0 deletions

View File

@ -990,6 +990,8 @@ int32_t streamProcessDispatchRsp(SStreamTask* pTask, SStreamDispatchRsp* pRsp, i
if (code != TSDB_CODE_SUCCESS) { // todo: do nothing if error happens
}
// now ready for next data output
atomic_store_8(&pTask->outputInfo.status, TASK_OUTPUT_STATUS__NORMAL);
return TSDB_CODE_SUCCESS;
}