mirror of https://github.com/milvus-io/milvus.git
Remove debug log with no meaning (#16583)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/16591/head
parent
6de1d223a6
commit
bd29518b6e
|
@ -163,7 +163,6 @@ func (nd *etcdShardNodeDetector) handlePutEvent(e *clientv3.Event, collectionID,
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if info.CollectionID != collectionID || info.ReplicaID != replicaID {
|
if info.CollectionID != collectionID || info.ReplicaID != replicaID {
|
||||||
log.Warn("here")
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if e.PrevKv != nil {
|
if e.PrevKv != nil {
|
||||||
|
|
|
@ -132,7 +132,6 @@ func (sd *etcdShardSegmentDetector) watch(ch clientv3.WatchChan, collectionID in
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for _, e := range evt.Events {
|
for _, e := range evt.Events {
|
||||||
log.Debug("segment evt", zap.Any("evt", evt))
|
|
||||||
switch e.Type {
|
switch e.Type {
|
||||||
case mvccpb.PUT:
|
case mvccpb.PUT:
|
||||||
sd.handlePutEvent(e, collectionID, replicaID, vchannel)
|
sd.handlePutEvent(e, collectionID, replicaID, vchannel)
|
||||||
|
|
Loading…
Reference in New Issue