fix(stream): check return value.
This commit is contained in:
parent
aa12038fc4
commit
aa187f1ee3
|
@ -1747,7 +1747,8 @@ int32_t streamProcessDispatchRsp(SStreamTask* pTask, SStreamDispatchRsp* pRsp, i
|
|||
}
|
||||
|
||||
if (addFailure) { // add failure downstream node id, and start the nodeEp update procedure
|
||||
streamTaskAddIntoNodeUpdateList(pTask, pRsp->downstreamNodeId);
|
||||
// ignore the return error and continue
|
||||
int32_t unused = streamTaskAddIntoNodeUpdateList(pTask, pRsp->downstreamNodeId);
|
||||
}
|
||||
|
||||
// all msg rsp already, continue
|
||||
|
|
Loading…
Reference in New Issue