diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2014-05-02 02:26:15 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-05-10 01:14:56 +0900 |
commit | 2d00b7d4247e83aef57e73a589e01082a4ea616e (patch) | |
tree | 130de06d4aa612d13a66c7ba91e4c3975b547981 | |
parent | aad58663c0ecdcbecd25af20ac267d63694ce9fd (diff) |
bgp: remove unnecessary log message
update msg without MpReachNlri or MpUnReachNlri is now normal
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/services/protocols/bgp/peer.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ryu/services/protocols/bgp/peer.py b/ryu/services/protocols/bgp/peer.py index 24edf2df..0ee39be3 100644 --- a/ryu/services/protocols/bgp/peer.py +++ b/ryu/services/protocols/bgp/peer.py @@ -986,8 +986,6 @@ class Peer(Source, Sink, NeighborConfListener, Activity): # non-MPBGP Update msg. if not (mp_reach_attr or mp_unreach_attr): - LOG.info('Received UPDATE msg. with no MpReachNlri or ' - 'MpUnReachNlri attribute.') if not self.is_mpbgp_cap_valid(RF_IPv4_UC): LOG.error('Got UPDATE message with un-available' ' afi/safi %s' % RF_IPv4_UC) |