diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-07-29 00:32:06 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-07-29 00:32:06 +0900 |
commit | 2a552a49b4991fcf765dbbbbd56619256dab96ac (patch) | |
tree | b0b35a545be14cacb6465299ee34aefdae592f83 /gobgpd/main.go | |
parent | 9e6fede3f4eeb084dadd7dffde9ee9d3cb044254 (diff) |
remove unused GrpcRequest and GrpcResponse
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'gobgpd/main.go')
-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) |