Skip to content

Commit 741c7e3

Browse files
lolyuarista-hpandya
authored andcommitted
[sanity check] Fix dualtor sanity check issue (sonic-net#14056)
Signed-off-by: Longxiang Lyu <[email protected]>
1 parent 59acc9b commit 741c7e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/common/plugins/sanity_check/checks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ def _check_mux_status_helper():
610610
# NOTE: Let's probe here to see if those inconsistent mux ports could be
611611
# restored before using the recovery method.
612612
port_index_map = duts_minigraph_facts[duthosts[0].hostname][0][1]['minigraph_port_indices']
613-
dut_wrong_mux_status_ports = set(dut_wrong_mux_status_ports)
613+
dut_wrong_mux_status_ports = list(set(dut_wrong_mux_status_ports))
614614
inconsistent_mux_ports = [port for port, port_index in port_index_map.items()
615615
if port_index in dut_wrong_mux_status_ports]
616616
_probe_mux_ports(duthosts, inconsistent_mux_ports)

0 commit comments

Comments
 (0)