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
{{ message }}
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
The rust connection node currently has two waiting states with almost identical source code. They should be combined into a single command waiting state, that does the ack check up front, and appropriately ignores ack's when they shouldn't be waiting. This would remove the duplicate code between the Await and WaitingForAcks states.
The text was updated successfully, but these errors were encountered:
WaitingForAck's was essentially identical to Await, except it allowed
for Ack's to come in. Combining these reduces duplication and errors
that may occur as a result while simplifying command handling.
Closes#1165
The rust connection node currently has two waiting states with almost identical source code. They should be combined into a single command waiting state, that does the ack check up front, and appropriately ignores ack's when they shouldn't be waiting. This would remove the duplicate code between the Await and WaitingForAcks states.
The text was updated successfully, but these errors were encountered: