Skip to content

Commit ff4bbf3

Browse files
authored
Temporarily disable checking IPv6 BGP routing on neighbors for warm-reboot (#8735)
* Temporarily disable checking IPv6 BGP routing on neighbors for warm-reboot Due to sonic-net/sonic-buildimage#12853, IPv6 BGP is partially broken, where some IPv6 BGP prefixes aren't advertised up to T1 neighbors. In an effort to get the warm reboot PR checker re-enabled, disable checking the IPv6 BGP routing for now. Once that PR is either fixed or reverted, revert this PR. Signed-off-by: Saikrishna Arcot <[email protected]> * Add todo comment Signed-off-by: Saikrishna Arcot <[email protected]> --------- Signed-off-by: Saikrishna Arcot <[email protected]>
1 parent e872825 commit ff4bbf3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

ansible/roles/test/files/ptftests/arista.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,10 @@ def run(self):
148148
'interfaces']['Port-Channel1']['lastStatusChangeTimestamp']
149149
samples[cur_time] = sample
150150

151-
while not (quit_enabled and v4_routing_ok and v6_routing_ok):
151+
# TODO: Disabling v6_routing_ok check due to IPv6 FRR issue. Re-add v6_routing_ok once either:
152+
# * https://github.com/FRRouting/frr/issues/13587 is fixed and the fix gets merged into SONiC, or
153+
# * https://github.com/sonic-net/sonic-buildimage/pull/12853 is reverted
154+
while not (quit_enabled and v4_routing_ok):
152155
cmd = None
153156
# quit command was received, we don't process next commands
154157
# but wait for v4_routing_ok and v6_routing_ok

ansible/roles/test/files/ptftests/sonic.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,10 @@ def run(self):
103103
lacp_thread.setDaemon(True)
104104
lacp_thread.start()
105105

106-
while not (quit_enabled and v4_routing_ok and v6_routing_ok):
106+
# TODO: Disabling v6_routing_ok check due to IPv6 FRR issue. Re-add v6_routing_ok once either:
107+
# * https://github.com/FRRouting/frr/issues/13587 is fixed and the fix gets merged into SONiC, or
108+
# * https://github.com/sonic-net/sonic-buildimage/pull/12853 is reverted
109+
while not (quit_enabled and v4_routing_ok):
107110
cmd = None
108111
# quit command was received, we don't process next commands
109112
# but wait for v4_routing_ok and v6_routing_ok

0 commit comments

Comments
 (0)