From 3213eed6a5aca1625ffa03ab410ffc587121b9da Mon Sep 17 00:00:00 2001 From: Hiroshi Yokoi Date: Mon, 7 Dec 2015 16:37:31 +0900 Subject: doc: update python grpc instruction Signed-off-by: Hiroshi Yokoi --- tools/grpc/python/get_neighbor.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/grpc') diff --git a/tools/grpc/python/get_neighbor.py b/tools/grpc/python/get_neighbor.py index 91dc6d2c..867f1124 100644 --- a/tools/grpc/python/get_neighbor.py +++ b/tools/grpc/python/get_neighbor.py @@ -1,11 +1,14 @@ import gobgp_pb2 import sys +from grpc.beta import implementations + _TIMEOUT_SECONDS = 10 def run(gobgpd_addr, neighbor_addr): - with gobgp_pb2.early_adopter_create_GobgpApi_stub(gobgpd_addr, 8080) as stub: + channel = implementations.insecure_channel(gobgpd_addr, 8080) + with gobgp_pb2.beta_create_GobgpApi_stub(channel) as stub: peer = stub.GetNeighbor(gobgp_pb2.Arguments(rf=4, name=neighbor_addr), _TIMEOUT_SECONDS) print("BGP neighbor is %s, remote AS %d" % (peer.conf.neighbor_address, peer.conf.peer_as)) print(" BGP version 4, remote router ID %s" % (peer.conf.id)) -- cgit v1.2.3