From 7900c725d529d4f2e126b596bb8a2872e15ed0c0 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Tue, 21 Jan 2025 09:15:27 +0800 Subject: [PATCH] fix(stream): fix syntax error. --- source/dnode/mnode/impl/src/mndStreamUtil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dnode/mnode/impl/src/mndStreamUtil.c b/source/dnode/mnode/impl/src/mndStreamUtil.c index 69ab56429c..dc9d3fabd9 100644 --- a/source/dnode/mnode/impl/src/mndStreamUtil.c +++ b/source/dnode/mnode/impl/src/mndStreamUtil.c @@ -698,7 +698,7 @@ static int32_t allTasksSendChkptReport(SChkptReportInfo* pReportInfo, int32_t nu // cross-check failed, there must be something unknown wrong SStreamTransInfo *pTransInfo = taosHashGet(execInfo.transMgmt.pDBTrans, &id.streamId, sizeof(id.streamId)); if (pTransInfo == NULL) { - mError("stream:0x%" PRIx64" no active exists for checkpoint transId:%d, clear checkpoint-report list", id.streamId); + mError("stream:0x%" PRIx64" no active exists for checkpoint transId:%d, clear checkpoint-report list", id.streamId, transId); taosArrayClear(pReportInfo->pTaskList); return -1; }