fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2025-01-21 09:15:27 +08:00
parent efd33aa4d7
commit 7900c725d5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}