From 53b51b9b71dc9dd6a753ba2bb62d23ec27d170ab Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Fri, 21 Jun 2024 15:23:15 +0800 Subject: [PATCH] fix(stream): fix syntax error. --- source/dnode/mnode/impl/src/mndStream.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/dnode/mnode/impl/src/mndStream.c b/source/dnode/mnode/impl/src/mndStream.c index a0fb8ae40a..7aa95202dd 100644 --- a/source/dnode/mnode/impl/src/mndStream.c +++ b/source/dnode/mnode/impl/src/mndStream.c @@ -1934,7 +1934,8 @@ static int32_t mndProcessPauseStreamReq(SRpcMsg *pReq) { } if (pEntry->status == TASK_STATUS__UNINIT || pEntry->status == TASK_STATUS__CK) { - mError("stream:%s uid:0x%" PRIx64 " vgId:%d task:0x%x in checkpoint/uninit status, not ready for pause", + mError("stream:%s uid:0x%" PRIx64 " vgId:%d task:0x%" PRIx64 + " in checkpoint/uninit status, not ready for pause", pStream->name, pStream->uid, pEntry->nodeId, pEntry->id.taskId); readyToPause = false; }