mirror of https://github.com/milvus-io/milvus.git
fix: panic when streaming release if using msgstream (#39374)
issue: #39367 Signed-off-by: chyezh <chyezh@outlook.com>pull/39299/head
parent
c38bca8d80
commit
92bde5b4f6
|
@ -163,7 +163,9 @@ func (w *walAccesserImpl) Close() {
|
|||
}
|
||||
w.producerMutex.Unlock()
|
||||
|
||||
w.handlerClient.Close()
|
||||
if w.handlerClient != nil {
|
||||
w.handlerClient.Close()
|
||||
}
|
||||
w.streamingCoordClient.Close()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue