From 1659164926c8c862819be06dfced8af8142c27d6 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 27 Dec 2023 23:00:18 +0800 Subject: [PATCH] fix(stream): remove invalid checkpoint id check. --- source/dnode/vnode/src/tq/tq.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/dnode/vnode/src/tq/tq.c b/source/dnode/vnode/src/tq/tq.c index 33f937a909..58f1fe954a 100644 --- a/source/dnode/vnode/src/tq/tq.c +++ b/source/dnode/vnode/src/tq/tq.c @@ -1292,7 +1292,6 @@ int32_t tqProcessTaskCheckPointSourceReq(STQ* pTq, SRpcMsg* pMsg, SRpcMsg* pRsp) // check if the checkpoint msg already sent or not. if (status == TASK_STATUS__CK) { - ASSERT(pTask->chkInfo.checkpointingId == req.checkpointId); tqWarn("s-task:%s recv checkpoint-source msg again checkpointId:%" PRId64 " transId:%d already received, ignore this msg and continue process checkpoint", pTask->id.idStr, pTask->chkInfo.checkpointingId, req.transId);