We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86b4ede commit 43ed544Copy full SHA for 43ed544
orchagent/portsorch.cpp
@@ -2700,6 +2700,22 @@ void PortsOrch::doPortTask(Consumer &consumer)
2700
}
2701
2702
2703
+ if (m_portListLaneMap.find(lane_set) == m_portListLaneMap.end())
2704
+ {
2705
+
2706
+ string tmp_lane_str = "";
2707
+ for (auto s : lane_set)
2708
2709
+ tmp_lane_str += to_string(s) + " ";
2710
+ }
2711
+ tmp_lane_str = tmp_lane_str.substr(0, tmp_lane_str.size()-1);
2712
2713
+ SWSS_LOG_WARN("The lane set %s isn't available in ASIC", tmp_lane_str.c_str());
2714
2715
+ it = consumer.m_toSync.erase(it);
2716
+ continue;
2717
2718
2719
/* Collect information about all received ports */
2720
if (lane_set.size())
2721
{
0 commit comments