From 2441c92ae08e3f02af0cd69b9b39d7df6c50e17d Mon Sep 17 00:00:00 2001 From: wei liu Date: Fri, 18 Oct 2024 12:33:25 +0800 Subject: [PATCH] fix: Query node panic during sending rpc to worker (#36975) issue: #36976 Signed-off-by: Wei Liu --- internal/querynodev2/cluster/worker.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/querynodev2/cluster/worker.go b/internal/querynodev2/cluster/worker.go index af524cb899..9548b05b3a 100644 --- a/internal/querynodev2/cluster/worker.go +++ b/internal/querynodev2/cluster/worker.go @@ -209,6 +209,7 @@ func (w *remoteWorker) Stop() { for _, client := range w.clients { client.Close() } + return } if err := w.client.Close(); err != nil { log.Warn("failed to call Close via grpc worker", zap.Error(err))