From 2d00b7d4247e83aef57e73a589e01082a4ea616e Mon Sep 17 00:00:00 2001 From: ISHIDA Wataru Date: Fri, 2 May 2014 02:26:15 +0000 Subject: [PATCH] bgp: remove unnecessary log message update msg without MpReachNlri or MpUnReachNlri is now normal Signed-off-by: ISHIDA Wataru Signed-off-by: FUJITA Tomonori --- ryu/services/protocols/bgp/peer.py | 2 -- 1 file changed, 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)