We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59acc9b commit 741c7e3Copy full SHA for 741c7e3
tests/common/plugins/sanity_check/checks.py
@@ -610,7 +610,7 @@ def _check_mux_status_helper():
610
# NOTE: Let's probe here to see if those inconsistent mux ports could be
611
# restored before using the recovery method.
612
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)
+ dut_wrong_mux_status_ports = list(set(dut_wrong_mux_status_ports))
614
inconsistent_mux_ports = [port for port, port_index in port_index_map.items()
615
if port_index in dut_wrong_mux_status_ports]
616
_probe_mux_ports(duthosts, inconsistent_mux_ports)
0 commit comments