mirror of https://github.com/milvus-io/milvus.git
enhance: Remove useless log in collection observer (#29555)
pr: #29554 This PR removed useless log in collection observer Signed-off-by: Wei Liu <wei.liu@zilliz.com>pull/29557/head
parent
07ef52e845
commit
a13fc4d346
|
@ -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