fix(stream): update logs.

This commit is contained in:
Haojun Liao 2023-09-19 11:05:49 +08:00
parent 5a6e50d523
commit 38b3a7c1bd
1 changed files with 3 additions and 3 deletions

View File

@ -525,6 +525,9 @@ int32_t streamProcessTranstateBlock(SStreamTask* pTask, SStreamDataBlock* pBlock
int32_t streamExecForAll(SStreamTask* pTask) {
const char* id = pTask->id.idStr;
// merge multiple input data if possible in the input queue.
qDebug("s-task:%s start to extract data block from inputQ", id);
while (1) {
int32_t numOfBlocks = 0;
SStreamQueueItem* pInput = NULL;
@ -533,9 +536,6 @@ int32_t streamExecForAll(SStreamTask* pTask) {
break;
}
// merge multiple input data if possible in the input queue.
qDebug("s-task:%s start to extract data block from inputQ", id);
/*int32_t code = */ streamTaskGetDataFromInputQ(pTask, &pInput, &numOfBlocks);
if (pInput == NULL) {
ASSERT(numOfBlocks == 0);