Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/dualtor_io/test_link_failure.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def test_active_link_admin_down_config_reload_downstream(
config_interface_admin_status(upper_tor_host, active_active_ports, "down")

upper_tor_host.shell("config save -y")
config_reload(upper_tor_host, wait=60)
config_reload(upper_tor_host, safe_reload=True, wait_for_bgp=True)

verify_tor_states(
expected_active_host=lower_tor_host,
Expand All @@ -433,7 +433,7 @@ def test_active_link_admin_down_config_reload_downstream(

send_t1_to_server_with_action(
upper_tor_host, verify=True,
stop_after=180,
stop_after=60,
allowed_disruption=0,
allow_disruption_before_traffic=True
)
Expand Down Expand Up @@ -467,7 +467,7 @@ def test_active_link_admin_down_config_reload_link_up_upstream(
)

upper_tor_host.shell("config save -y")
config_reload(upper_tor_host, wait=60)
config_reload(upper_tor_host, safe_reload=True, wait_for_bgp=True)

verify_tor_states(
expected_active_host=lower_tor_host,
Expand Down Expand Up @@ -521,7 +521,7 @@ def test_active_link_admin_down_config_reload_link_up_downstream_standby(
)

upper_tor_host.shell("config save -y")
config_reload(upper_tor_host, wait=60)
config_reload(upper_tor_host, safe_reload=True, wait_for_bgp=True)

verify_tor_states(
expected_active_host=lower_tor_host,
Expand Down
Loading