fix(stream): fix syntax error.
This commit is contained in:
parent
eff1aff58e
commit
29421c17d8
|
@ -1883,7 +1883,7 @@ int32_t streamProcessDispatchMsg(SStreamTask* pTask, SStreamDispatchReq* pReq, S
|
|||
if (pReq->msgId > pInfo->lastMsgId) {
|
||||
status = streamTaskAppendInputBlocks(pTask, pReq);
|
||||
if (status == TASK_INPUT_STATUS__NORMAL) {
|
||||
stDebug("s-task:%s update the lastMsgId from %" PRId64 " to %" PRId64, id, pInfo->lastMsgId, pReq->msgId);
|
||||
stDebug("s-task:%s update the lastMsgId from %" PRId64 " to %d", id, pInfo->lastMsgId, pReq->msgId);
|
||||
pInfo->lastMsgId = pReq->msgId;
|
||||
} else {
|
||||
stDebug("s-task:%s not update the lastMsgId, remain:%" PRId64, id, pInfo->lastMsgId);
|
||||
|
|
Loading…
Reference in New Issue