other: fix syntax error.
This commit is contained in:
parent
50f6829894
commit
68aac5dee1
|
@ -2569,7 +2569,7 @@ int32_t mndProcessCheckpointReport(SRpcMsg *pReq) {
|
||||||
if (pStream != NULL) {
|
if (pStream != NULL) {
|
||||||
bool conflict = mndStreamTransConflictCheck(pMnode, pStream->uid, MND_STREAM_CHKPT_UPDATE_NAME, false);
|
bool conflict = mndStreamTransConflictCheck(pMnode, pStream->uid, MND_STREAM_CHKPT_UPDATE_NAME, false);
|
||||||
if (conflict) {
|
if (conflict) {
|
||||||
mDebug("stream:%x%"PRIx64" active checkpoint trans not finished yet, wait", req.streamId);
|
mDebug("stream:0x%"PRIx64" active checkpoint trans not finished yet, wait", req.streamId);
|
||||||
} else {
|
} else {
|
||||||
int32_t code = mndCreateStreamChkptInfoUpdateTrans(pMnode, pStream, *pReqTaskList);
|
int32_t code = mndCreateStreamChkptInfoUpdateTrans(pMnode, pStream, *pReqTaskList);
|
||||||
if (code == TSDB_CODE_SUCCESS) { // remove this entry
|
if (code == TSDB_CODE_SUCCESS) { // remove this entry
|
||||||
|
|
|
@ -789,7 +789,7 @@ void scanCheckpointReportInfo(SMnode* pMnode) {
|
||||||
pInfo->streamId);
|
pInfo->streamId);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mDebug("stream:%x%"PRIx64" active checkpoint trans not finished yet, wait", pInfo->streamId);
|
mDebug("stream:0x%"PRIx64" active checkpoint trans not finished yet, wait", pInfo->streamId);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mDebug("stream:0x%" PRIx64 " %s %d/%d tasks send checkpoint-report, %d not send", pInfo->streamId, pStream->name,
|
mDebug("stream:0x%" PRIx64 " %s %d/%d tasks send checkpoint-report, %d not send", pInfo->streamId, pStream->name,
|
||||||
|
|
Loading…
Reference in New Issue