fix(stream): fix syntax error.
This commit is contained in:
parent
119001e30b
commit
53b51b9b71
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue