You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifically, this call is printing the message based on the above error code:
void FramerComponentImpl ::send(Fw::Buffer& outgoing) {
Drv::SendStatus sendStatus = framedOut_out(0, outgoing);
if (sendStatus.e != Drv::SendStatus::SEND_OK) {
// Note: if there is a data sending problem, an EVR likely wouldn't make it down. Log the issue in hopes that// someone will see it.Fw::Logger::logMsg("[ERROR] Failed to send framed data: %d\n", sendStatus.e);
}
}
The text was updated successfully, but these errors were encountered:
@timcanham with the addition of the ComQueue component to Ref this is now fixed. Data queues up and you get a minimal set of EVRs indicating overflow. The incessant printing now only happens if you choose to skip the ComQueue/ComStub pairing.
Can we close or is there more we want to discuss here?
Problem Description
A description of the problem with sufficient detail to understand the issue.
How to Reproduce
Expected Behavior
If the socket has not been configured, this call should return
SEND_OK
:Specifically, this call is printing the message based on the above error code:
The text was updated successfully, but these errors were encountered: