diff --git a/tools/goctl/rpc/gen/genmain.go b/tools/goctl/rpc/gen/genmain.go index c9b6ccd5..be5a26a6 100644 --- a/tools/goctl/rpc/gen/genmain.go +++ b/tools/goctl/rpc/gen/genmain.go @@ -35,10 +35,9 @@ func main() { ctx := svc.NewServiceContext(c) {{.srv}} - s, err := zrpc.NewServer(c.RpcServerConf, func(grpcServer *grpc.Server) { + s := zrpc.MustNewServer(c.RpcServerConf, func(grpcServer *grpc.Server) { {{.registers}} }) - logx.Must(err) defer s.Stop() fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)