From e9a22a47eb294a975ef01ac9fd2990f3cd4f1710 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Fri, 29 Oct 2021 12:05:27 +0800 Subject: [PATCH] [skip ci]Fix golint error for GetTimeTickChannel in QueryCoord (#10883) Signed-off-by: cai.zhang --- internal/distributed/querycoord/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/querycoord/service.go b/internal/distributed/querycoord/service.go index 05fda12a1a..74f0ae2093 100644 --- a/internal/distributed/querycoord/service.go +++ b/internal/distributed/querycoord/service.go @@ -255,6 +255,7 @@ func (s *Server) GetComponentStates(ctx context.Context, req *internalpb.GetComp return s.queryCoord.GetComponentStates(ctx) } +// GetTimeTickChannel gets the time tick channel of QueryCoord. func (s *Server) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) { return s.queryCoord.GetTimeTickChannel(ctx) }