From 011627d50a03cf7efd90fd1a6e12cfac19fa9aeb 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 35007bda1d..64d0d47abe 100644 --- a/source/libs/stream/src/streamMeta.c +++ b/source/libs/stream/src/streamMeta.c @@ -899,7 +899,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); }