mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
Remove debug log in querynode segment/node detector (#16572)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
a6a3b69d91
commit
6de1d223a6
@ -265,8 +265,5 @@ func (nd *etcdShardNodeDetector) handleDelEvent(e *clientv3.Event, collectionID,
|
||||
func (nd *etcdShardNodeDetector) parseReplicaInfo(bs []byte) (*milvuspb.ReplicaInfo, error) {
|
||||
info := &milvuspb.ReplicaInfo{}
|
||||
err := proto.Unmarshal(bs, info)
|
||||
if err == nil {
|
||||
log.Debug("ReplicaInfo", zap.Any("info", info))
|
||||
}
|
||||
return info, err
|
||||
}
|
||||
|
@ -193,9 +193,6 @@ func (sd *etcdShardSegmentDetector) handleDelEvent(e *clientv3.Event, collection
|
||||
func (sd *etcdShardSegmentDetector) parseSegmentInfo(bs []byte) (*querypb.SegmentInfo, error) {
|
||||
info := &querypb.SegmentInfo{}
|
||||
err := proto.Unmarshal(bs, info)
|
||||
if err == nil {
|
||||
log.Debug("segment info", zap.Any("segmentInfo", info))
|
||||
}
|
||||
return info, err
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user