From c9f3e0b0e1051ab8cfecb85e1dbf97a2faef84bb Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Tue, 15 Aug 2023 09:34:19 +0800 Subject: [PATCH] fix(stream): fix an syntax error. --- source/libs/stream/src/streamRecover.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/stream/src/streamRecover.c b/source/libs/stream/src/streamRecover.c index ef8a96b3df..f70da8264b 100644 --- a/source/libs/stream/src/streamRecover.c +++ b/source/libs/stream/src/streamRecover.c @@ -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;