Signed-off-by: ISHIDA Wataru <[email protected]>
---
ryu/services/protocols/bgp/bmp.py | 7 -------
1 file changed, 7 deletions(-)
diff --git a/ryu/services/protocols/bgp/bmp.py
b/ryu/services/protocols/bgp/bmp.py
index f01b509..fe52eac 100644
--- a/ryu/services/protocols/bgp/bmp.py
+++ b/ryu/services/protocols/bgp/bmp.py
@@ -84,7 +84,6 @@ class BMPClient(Activity):
def on_adj_rib_in_changed(self, data):
peer = data['peer']
path = data['received_route']
- update_msg = peer._construct_update(path)
msg = self._construct_route_monitoring(peer, path)
self._send(msg)
@@ -93,11 +92,6 @@ class BMPClient(Activity):
msg = self._construct_peer_up_notification(peer)
self._send(msg)
- for path in peer._adj_rib_in.itervalues():
- update_msg = peer._construct_update(path)
- msg = self._construct_route_monitoring(peer, path)
- self._send(msg)
-
def on_adj_down(self, data):
peer = data['peer']
msg = self._construct_peer_down_notification(peer)
@@ -201,7 +195,6 @@ class BMPClient(Activity):
self._send(msg)
for path in peer._adj_rib_in.itervalues():
- update_msg = peer._construct_update(path)
msg = self._construct_route_monitoring(peer, path)
self._send(msg)
--
1.9.1
------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel