Skip to content

Commit

Permalink
[T2][Chassis]- Exclude BGP testsuites from long reboot wait timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjair-git committed Oct 4, 2024
1 parent 3349965 commit 5bc65e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/reboot.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def reboot(duthost, localhost, reboot_type='cold', delay=10,
timeout = plt_reboot_ctrl.get('timeout', timeout)
if warmboot_finalizer_timeout == 0 and 'warmboot_finalizer_timeout' in reboot_ctrl:
warmboot_finalizer_timeout = reboot_ctrl['warmboot_finalizer_timeout']
if duthost.get_facts().get("modular_chassis"):
if duthost.get_facts().get("modular_chassis") and tc_name.split('/')[0] not in ['bgp']:
wait = max(wait, 900)
timeout = max(timeout, 600)
except KeyError:
Expand Down

0 comments on commit 5bc65e9

Please sign in to comment.