mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
Fix DescribeCollection failed with undefined msg type (#23298)
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
This commit is contained in:
parent
5ecec95bf6
commit
a92109735e
@ -418,7 +418,9 @@ func (s *Server) initGarbageCollection(cli storage.ChunkManager) {
|
||||
dropTolerance: Params.DataCoordCfg.GCDropTolerance,
|
||||
collValidator: func(collID int64) bool {
|
||||
resp, err := s.rootCoordClient.DescribeCollectionInternal(context.Background(), &milvuspb.DescribeCollectionRequest{
|
||||
Base: commonpbutil.NewMsgBase(),
|
||||
Base: commonpbutil.NewMsgBase(
|
||||
commonpbutil.WithMsgType(commonpb.MsgType_DescribeCollection),
|
||||
),
|
||||
CollectionID: collID,
|
||||
})
|
||||
if err != nil {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user