mirror of https://github.com/milvus-io/milvus.git
enhance: Remove useless log in collection observer (#29554)
This PR removed the useless log in collection observer Signed-off-by: Wei Liu <wei.liu@zilliz.com>pull/29569/head
parent
0a70e8b601
commit
514e279f3a
|
@ -156,9 +156,6 @@ func (ob *CollectionObserver) readyToObserve(collectionID int64) bool {
|
|||
|
||||
func (ob *CollectionObserver) observeLoadStatus(ctx context.Context) {
|
||||
partitions := ob.meta.CollectionManager.GetAllPartitions()
|
||||
if len(partitions) > 0 {
|
||||
log.Info("observe partitions status", zap.Int("partitionNum", len(partitions)))
|
||||
}
|
||||
loading := false
|
||||
for _, partition := range partitions {
|
||||
if partition.LoadPercentage == 100 {
|
||||
|
|
Loading…
Reference in New Issue