mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
fix: Remove group checker when closing qn pipeline (#33443)
See also #33442 This fix shall prevent group checker keep printing "some node(s) haven't received input" err message after collection released Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
bbb69980ac
commit
a26d6cdf23
@ -69,6 +69,11 @@ func (p *pipeline) Start() error {
|
||||
}
|
||||
|
||||
func (p *pipeline) Close() {
|
||||
for _, node := range p.nodes {
|
||||
if node.Checker != nil {
|
||||
node.Checker.Close()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (p *pipeline) process() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user