fix compile error
This commit is contained in:
parent
2ec67bcc08
commit
f3f3893872
|
@ -444,8 +444,8 @@ static int32_t doDispatchCheckpointMsg(SStreamTask* pTask, const SStreamCheckpoi
|
|||
tEncoderClear(&encoder);
|
||||
|
||||
initRpcMsg(&msg, TDMT_STREAM_TASK_CHECKPOINT, buf, tlen + sizeof(SMsgHead));
|
||||
qDebug("s-task:%s (level:%d, vgId:%d) dispatch checkpoint msg to s-task:0x%" PRIx64 ":0x%x (vgId:%d)", pTask->id.idStr,
|
||||
pTask->info.taskLevel, pTask->info.nodeId, pReq->streamId, pReq->downstreamTaskId, nodeId);
|
||||
qDebug("s-task:%s (level:%d, vgId:%d) dispatch checkpoint msg to s-task:0x%" PRIx64 ":0x%x (vgId:%d)",
|
||||
pTask->id.idStr, pTask->info.taskLevel, pTask->info.nodeId, pReq->streamId, pReq->downstreamTaskId, nodeId);
|
||||
|
||||
tmsgSendReq(pEpSet, &msg);
|
||||
return 0;
|
||||
|
@ -518,8 +518,8 @@ int32_t streamTaskSendCheckpointRsp(SStreamTask* pTask) {
|
|||
int32_t num = taosArrayGetSize(pTask->pRpcMsgList);
|
||||
ASSERT(taosArrayGetSize(pTask->pUpstreamEpInfoList) == num);
|
||||
|
||||
qDebug("s-task:%s level:%d checkpoint completed msg sent to %d upstream tasks", pTask->id.idStr, pTask->info.taskLevel,
|
||||
num);
|
||||
qDebug("s-task:%s level:%d checkpoint completed msg sent to %d upstream tasks", pTask->id.idStr,
|
||||
pTask->info.taskLevel, num);
|
||||
|
||||
for (int32_t i = 0; i < num; ++i) {
|
||||
SRpcMsg* pMsg = taosArrayGet(pTask->pRpcMsgList, i);
|
||||
|
@ -527,7 +527,7 @@ int32_t streamTaskSendCheckpointRsp(SStreamTask* pTask) {
|
|||
}
|
||||
|
||||
taosArrayClear(pTask->pRpcMsgList);
|
||||
qDebug("s-task:%s level:%d source checkpoint completed msg sent to upstream", pTask->id.idStr);
|
||||
qDebug("s-task:%s level:%d source checkpoint completed msg sent to upstream", pTask->id.idStr, pTask->info.taskLevel);
|
||||
|
||||
return TSDB_CODE_SUCCESS;
|
||||
}
|
||||
|
@ -540,7 +540,7 @@ int32_t streamTaskSendCheckpointSourceRsp(SStreamTask* pTask) {
|
|||
tmsgSendRsp(pMsg);
|
||||
|
||||
taosArrayClear(pTask->pRpcMsgList);
|
||||
qDebug("s-task:%s level:%d source checkpoint completed msg sent to mnode", pTask->id.idStr);
|
||||
qDebug("s-task:%s level:%d source checkpoint completed msg sent to mnode", pTask->id.idStr, pTask->info.taskLevel);
|
||||
|
||||
return TSDB_CODE_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue