diff options
Diffstat (limited to 'gobgpd')
-rw-r--r-- | gobgpd/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gobgpd/main.go b/gobgpd/main.go index d76735d7..48479e60 100644 --- a/gobgpd/main.go +++ b/gobgpd/main.go @@ -179,7 +179,7 @@ func main() { go bgpServer.Serve() // start grpc Server - grpcServer := server.NewGrpcServer(bgpServer, opts.GrpcHosts, bgpServer.GrpcReqCh) + grpcServer := server.NewGrpcServer(bgpServer, opts.GrpcHosts) go func() { if err := grpcServer.Serve(); err != nil { log.Fatalf("failed to listen grpc port: %s", err) |