From fd310e583c308613088be0e014f60689bd4ccab8 Mon Sep 17 00:00:00 2001 From: Sergey Klyaus Date: Thu, 7 Nov 2024 18:03:29 +0100 Subject: [PATCH] fix test_05_holdtime_expiry_graceful_restart --- test/scenario_test/graceful_restart_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/scenario_test/graceful_restart_test.py b/test/scenario_test/graceful_restart_test.py index f7617865e..3a3fd2fa0 100644 --- a/test/scenario_test/graceful_restart_test.py +++ b/test/scenario_test/graceful_restart_test.py @@ -151,6 +151,7 @@ def test_05_holdtime_expiry_graceful_restart(self): g1 = self.bgpds['g1'] g2 = self.bgpds['g2'] g3 = self.bgpds['g3'] + g2.wait_for(expected_state=BGP_FSM_ESTABLISHED, peer=g1) g1.local("ip route add blackhole {}/32".format(g2.ip_addrs[0][1].split("/")[0])) g1.local("ip route add blackhole {}/32".format(g3.ip_addrs[0][1].split("/")[0])) g2.wait_for(expected_state=BGP_FSM_ACTIVE, peer=g1)