fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2024-06-21 15:23:15 +08:00
parent 119001e30b
commit 53b51b9b71
1 changed files with 2 additions and 1 deletions

View File

@ -1934,7 +1934,8 @@ static int32_t mndProcessPauseStreamReq(SRpcMsg *pReq) {
} }
if (pEntry->status == TASK_STATUS__UNINIT || pEntry->status == TASK_STATUS__CK) { 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); pStream->name, pStream->uid, pEntry->nodeId, pEntry->id.taskId);
readyToPause = false; readyToPause = false;
} }