fix(stream): ignore the check status when is ready.
This commit is contained in:
parent
c99f434706
commit
7cce53f7e5
|
@ -91,10 +91,13 @@ int32_t tqStartStreamTask(STQ* pTq) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pTask->status.downstreamReady == 1 && HAS_RELATED_FILLHISTORY_TASK(pTask)) {
|
if (pTask->status.downstreamReady == 1) {
|
||||||
tqDebug("s-task:%s downstream ready, no need to check downstream, check only related fill-history task",
|
if (HAS_RELATED_FILLHISTORY_TASK(pTask)) {
|
||||||
pTask->id.idStr);
|
tqDebug("s-task:%s downstream ready, no need to check downstream, check only related fill-history task",
|
||||||
streamLaunchFillHistoryTask(pTask);
|
pTask->id.idStr);
|
||||||
|
streamLaunchFillHistoryTask(pTask);
|
||||||
|
}
|
||||||
|
|
||||||
streamMetaReleaseTask(pMeta, pTask);
|
streamMetaReleaseTask(pMeta, pTask);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue