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:
congqixia 2024-05-29 14:07:44 +08:00 committed by GitHub
parent bbb69980ac
commit a26d6cdf23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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() {