diff options
author | Toshiki Tsuboi <t.tsubo2000@gmail.com> | 2015-09-23 08:47:58 +0900 |
---|---|---|
committer | Toshiki Tsuboi <t.tsubo2000@gmail.com> | 2015-09-23 08:47:58 +0900 |
commit | 92bfac20656fc30fb767bfbabf333671aa7a77f8 (patch) | |
tree | 89ec205ad3849131de5818aeb90fbd912df812b5 /tools/grpc | |
parent | c9262d33b3dccba3dba46063d0db206448f2feea (diff) |
tools: change for renaming api-name of package/service to gobgpapi
Needs to change it because of renaming name from Grpc to GobgpApi.
Diffstat (limited to 'tools/grpc')
-rw-r--r-- | tools/grpc/python/get_neighbor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/grpc/python/get_neighbor.py b/tools/grpc/python/get_neighbor.py index 6ce2aabe..590599d2 100644 --- a/tools/grpc/python/get_neighbor.py +++ b/tools/grpc/python/get_neighbor.py @@ -5,7 +5,7 @@ _TIMEOUT_SECONDS = 10 def run(gobgpd_addr, neighbor_addr): - with gobgp_pb2.early_adopter_create_Grpc_stub(gobgpd_addr, 8080) as stub: + with gobgp_pb2.early_adopter_create_GobgpApi_stub(gobgpd_addr, 8080) 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.remote_ip, peer.conf.remote_as)) print(" BGP version 4, remote router ID %s" % ( peer.conf.id)) |