From f55066c1fb6ba9ffaeef1ffae30a339193fb25bd Mon Sep 17 00:00:00 2001 From: Rayhaan Jaufeerally Date: Mon, 7 Oct 2024 10:27:56 +0000 Subject: [PATCH] Fix build: remove call to removed function --- crates/server/src/peer.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/server/src/peer.rs b/crates/server/src/peer.rs index 3368b9f..8705c1f 100644 --- a/crates/server/src/peer.rs +++ b/crates/server/src/peer.rs @@ -1288,13 +1288,6 @@ where async fn handle_established_msg(&mut self, msg: BGPSubmessage) -> Result<()> { match msg { BGPSubmessage::UpdateMessage(u) => { - if !self.decide_accept_message(&u.path_attributes) { - info!( - "Rejected message due to path attributes: {:?}", - u.path_attributes - ); - } - // Have a seperate path for calling Multiprotocol NLRI processing. for attr in &u.path_attributes { match attr {