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;
|
||||
}
|
||||
|
||||
if (pTask->status.downstreamReady == 1 && HAS_RELATED_FILLHISTORY_TASK(pTask)) {
|
||||
if (pTask->status.downstreamReady == 1) {
|
||||
if (HAS_RELATED_FILLHISTORY_TASK(pTask)) {
|
||||
tqDebug("s-task:%s downstream ready, no need to check downstream, check only related fill-history task",
|
||||
pTask->id.idStr);
|
||||
streamLaunchFillHistoryTask(pTask);
|
||||
}
|
||||
|
||||
streamMetaReleaseTask(pMeta, pTask);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue