[skip ci] Format code (#10824)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
pull/10828/head
groot 2021-10-28 18:06:26 +08:00 committed by GitHub
parent afeaade2d3
commit 2b7cdfc8e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -56,7 +56,6 @@ type Server struct {
// Run initializes and starts IndexNode's grpc service.
func (s *Server) Run() error {
if err := s.init(); err != nil {
return err
}
@ -69,7 +68,6 @@ func (s *Server) Run() error {
}
func (s *Server) startGrpcLoop(grpcPort int) {
defer s.loopWg.Done()
log.Debug("IndexNode", zap.String("network address", Params.Address), zap.Int("network port: ", grpcPort))
@ -94,7 +92,6 @@ func (s *Server) startGrpcLoop(grpcPort int) {
if err := s.grpcServer.Serve(lis); err != nil {
s.grpcErrChan <- err
}
}
// init initializes IndexNode's grpc service.