fix(stream): fix an syntax error.

This commit is contained in:
Haojun Liao 2023-08-15 09:34:19 +08:00
parent fe5e48b87d
commit c9f3e0b0e1
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ int32_t streamTaskCheckStatus(SStreamTask* pTask, int32_t upstreamTaskId, int32_
if (pInfo->stage < stage) {
qError("s-task:%s receive msg from upstream task:0x%x(vgId:%d), new stage received:%" PRId64 ", prev:%" PRId64,
pTask->id.idStr, vgId, stage, pInfo->stage);
pTask->id.idStr, upstreamTaskId, vgId, stage, pInfo->stage);
}
return ((pTask->status.downstreamReady == 1) && (pInfo->stage == upstreamTaskId))? 1:0;