fix(stream): remove invalid free.
This commit is contained in:
parent
801b211cd8
commit
45ab92a02d
|
@ -1963,7 +1963,6 @@ int32_t tqProcessTaskUpdateReq(STQ* pTq, SRpcMsg* pMsg) {
|
||||||
} else {
|
} else {
|
||||||
tqInfo("vgId:%d, follower node not start stream tasks", vgId);
|
tqInfo("vgId:%d, follower node not start stream tasks", vgId);
|
||||||
}
|
}
|
||||||
taosArrayDestroy(req.pNodeList);
|
|
||||||
streamMetaWUnLock(pMeta);
|
streamMetaWUnLock(pMeta);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -448,7 +448,7 @@ bool doPutDataIntoInputQFromWal(SStreamTask* pTask, int64_t maxVer, int32_t* num
|
||||||
numOfNewItems += 1;
|
numOfNewItems += 1;
|
||||||
int64_t ver = walReaderGetCurrentVer(pTask->exec.pWalReader);
|
int64_t ver = walReaderGetCurrentVer(pTask->exec.pWalReader);
|
||||||
pTask->chkInfo.nextProcessVer = ver;
|
pTask->chkInfo.nextProcessVer = ver;
|
||||||
tqDebug("s-task:%s set the ver:%" PRId64 " from WALReader after extract block from WAL", id, ver);
|
tqDebug("s-task:%s set ver:%" PRId64 " for reader after extract data from WAL", id, ver);
|
||||||
|
|
||||||
bool itemInFillhistory = handleFillhistoryScanComplete(pTask, ver);
|
bool itemInFillhistory = handleFillhistoryScanComplete(pTask, ver);
|
||||||
if (itemInFillhistory) {
|
if (itemInFillhistory) {
|
||||||
|
|
Loading…
Reference in New Issue