diff --git a/orchagent/portsorch.cpp b/orchagent/portsorch.cpp index d4e9af9540..3bdfe9d44e 100644 --- a/orchagent/portsorch.cpp +++ b/orchagent/portsorch.cpp @@ -2372,7 +2372,10 @@ void PortsOrch::generateQueueMap() for (const auto& it: m_portList) { - generateQueueMapPerPort(it.second); + if (it.second.m_type == Port::PHY) + { + generateQueueMapPerPort(it.second); + } } m_isQueueMapGenerated = true;