Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion ansible/roles/test/files/ptftests/arista.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,10 @@ def run(self):
'interfaces']['Port-Channel1']['lastStatusChangeTimestamp']
samples[cur_time] = sample

while not (quit_enabled and v4_routing_ok and v6_routing_ok):
# TODO: Disabling v6_routing_ok check due to IPv6 FRR issue. Re-add v6_routing_ok once either:
# * https://github.com/FRRouting/frr/issues/13587 is fixed and the fix gets merged into SONiC, or
# * https://github.com/sonic-net/sonic-buildimage/pull/12853 is reverted
while not (quit_enabled and v4_routing_ok):
cmd = None
# quit command was received, we don't process next commands
# but wait for v4_routing_ok and v6_routing_ok
Expand Down
5 changes: 4 additions & 1 deletion ansible/roles/test/files/ptftests/sonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,10 @@ def run(self):
lacp_thread.setDaemon(True)
lacp_thread.start()

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