From f054c82f7ca6901bcdcaf5817fbe6764ad03cc7b Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Thu, 14 Oct 2021 19:36:41 +0800 Subject: [PATCH] [skip ci]Fix golint for GetTimeTickChannel in distributed/querynode/service.go (#9908) Signed-off-by: cai.zhang --- internal/distributed/querynode/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/querynode/service.go b/internal/distributed/querynode/service.go index 088d9ab77a..dfffc104ee 100644 --- a/internal/distributed/querynode/service.go +++ b/internal/distributed/querynode/service.go @@ -269,6 +269,7 @@ func (s *Server) SetIndexCoord(indexCoord types.IndexCoord) error { return s.querynode.SetIndexCoord(indexCoord) } +// GetTimeTickChannel gets the time tick channel of QueryNode. func (s *Server) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) { return s.querynode.GetTimeTickChannel(ctx) }