diff options
author | Toshiki Tsuboi <t.tsubo2000@gmail.com> | 2015-01-31 21:44:57 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-02-01 20:57:31 +0900 |
commit | 32a57971b37f6d4f90f412a731993c79c09a0867 (patch) | |
tree | befb33bd8ad07cb4af18b439b8a3959905e30b54 | |
parent | 00bc1592e117d5f037f0c214c75b01f9d64f262b (diff) |
bgp: bug fix of sending Adj-RIB-Out
Signed-off-by: Toshiki Tsuboi <t.tsubo2000@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/services/protocols/bgp/info_base/base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ryu/services/protocols/bgp/info_base/base.py b/ryu/services/protocols/bgp/info_base/base.py index 8ddbb0a1..7cb14f3c 100644 --- a/ryu/services/protocols/bgp/info_base/base.py +++ b/ryu/services/protocols/bgp/info_base/base.py @@ -266,6 +266,7 @@ class NonVrfPathProcessingMixin(object): sent_route.sent_peer.enque_outgoing_msg(outgoing_route) LOG.debug('Sending withdrawal to %s for %s' % (sent_route.sent_peer, outgoing_route)) + self._sent_routes = {} class Destination(object): |