From b1ec9ed457a30663f775cb2f73d008b8649519f8 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke Date: Wed, 13 Jun 2018 15:57:31 +0900 Subject: [PATCH] BGPSpeaker: Fix BGP state string conversion The constants BGP_FSM_* are str type values and not callable. Signed-off-by: IWASE Yusuke Signed-off-by: FUJITA Tomonori --- ryu/services/protocols/bgp/peer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ryu/services/protocols/bgp/peer.py b/ryu/services/protocols/bgp/peer.py index 2a0e2a9f..2c6e3898 100644 --- a/ryu/services/protocols/bgp/peer.py +++ b/ryu/services/protocols/bgp/peer.py @@ -2000,8 +2000,8 @@ class Peer(Source, Sink, NeighborConfListener, Activity): # Open/Notification messages are currently handled by protocol and # nothing is done inside peer, so should not see them here. raise ValueError('Peer does not support handling of %s' - ' message during % state' % - (msg, self.state.bgp_state())) + ' message during %s state' % + (msg, self.state.bgp_state)) def _handle_err_sor_msg(self, afi, safi): # Check if ERR capability is enabled for this peer.