未验证 提交 f0ec9625 编写于 作者: H Haojun Liao 提交者: GitHub

Merge pull request #22004 from taosdata/fix/liaohj

fix(stream): add missing status check.
...@@ -407,7 +407,7 @@ int32_t streamExecForAll(SStreamTask* pTask) { ...@@ -407,7 +407,7 @@ int32_t streamExecForAll(SStreamTask* pTask) {
break; break;
} }
if (status != TASK_STATUS__NORMAL && status != TASK_STATUS__PAUSE) { if (status != TASK_STATUS__NORMAL && status != TASK_STATUS__PAUSE && status != TASK_STATUS__STOP) {
qError("stream task wait for the end of fill history, s-task:%s, status:%d", id, status); qError("stream task wait for the end of fill history, s-task:%s, status:%d", id, status);
taosMsleep(100); taosMsleep(100);
} else { } else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册