From acbb680c91a4e220ec88296540d68d9c8bcef759 Mon Sep 17 00:00:00 2001 From: Jiquan Long Date: Thu, 16 Dec 2021 20:47:14 +0800 Subject: [PATCH] [skip ci] Fix go fmt error (#13538) Signed-off-by: dragondriver --- internal/distributed/proxy/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/distributed/proxy/service.go b/internal/distributed/proxy/service.go index 8fbc6f0188..8b8bf7348a 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -383,7 +383,7 @@ func (s *Server) GetPartitionStatistics(ctx context.Context, request *milvuspb.G return s.proxy.GetPartitionStatistics(ctx, request) } -// ShowPartitions notifies Proxy to show the partitions +// ShowPartitions notifies Proxy to show the partitions func (s *Server) ShowPartitions(ctx context.Context, request *milvuspb.ShowPartitionsRequest) (*milvuspb.ShowPartitionsResponse, error) { return s.proxy.ShowPartitions(ctx, request) }