From c5997bee5b394774b5570570d35d6669e636de11 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Sat, 7 Oct 2023 09:07:44 +0800 Subject: [PATCH] fix(stream): update the current processing version. --- source/libs/stream/src/streamMeta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/stream/src/streamMeta.c b/source/libs/stream/src/streamMeta.c index f2f8bc15a8..358a75b4d9 100644 --- a/source/libs/stream/src/streamMeta.c +++ b/source/libs/stream/src/streamMeta.c @@ -900,7 +900,7 @@ void metaHbToMnode(void* param, void* tmrId) { // entry.outputRate = entry.outputQUsed*100.0/STREAM_TASK_QUEUE_CAPACITY_IN_SIZE; if ((*pTask)->exec.pWalReader != NULL) { - entry.offset = walReaderGetCurrentVer((*pTask)->exec.pWalReader); + entry.offset = (*pTask)->chkInfo.nextProcessVer; walReaderValidVersionRange((*pTask)->exec.pWalReader, &entry.verStart, &entry.verEnd); }