mirror of https://github.com/milvus-io/milvus.git
Fix flowgraph when there are multiple upstreams (#14345)
Signed-off-by: dragondriver <jiquan.long@zilliz.com>pull/14238/head
parent
00b3fcb98b
commit
ecf3b6c262
|
@ -169,7 +169,7 @@ func (nodeCtx *nodeCtx) collectInputMessages() {
|
|||
t := nodeCtx.inputMessages[0].TimeTick()
|
||||
latestTime := t
|
||||
for i := 1; i < len(nodeCtx.inputMessages); i++ {
|
||||
if t < nodeCtx.inputMessages[i].TimeTick() {
|
||||
if latestTime < nodeCtx.inputMessages[i].TimeTick() {
|
||||
latestTime = nodeCtx.inputMessages[i].TimeTick()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue