Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix setting host_tx_ready from initializePort() #13

Closed
wants to merge 11 commits into from
2 changes: 1 addition & 1 deletion orchagent/portsorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5423,7 +5423,7 @@ bool PortsOrch::initializePort(Port &port)
string hostTxReadyStr = hostTxReadyVal ? "true" : "false";

SWSS_LOG_DEBUG("Received host_tx_ready current status: port_id: 0x%" PRIx64 " status: %s", port.m_port_id, hostTxReadyStr.c_str());
setHostTxReady(port.m_port_id, hostTxReadyStr);
m_portStateTable.hset(port.m_alias, "host_tx_ready", hostTxReadyStr);
}

/*
Expand Down
Loading