Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop logging errors on receving a redundant standalone ack. (#29166)
If we had the following message flow: 1. Send a message that is the last message on an exchange. 2. Before we get the ack retransmit the message. 3. Get acks for both messages. we would log an error on the second ack, since there was no exchagne to dispatch it to, so it would just get dropped. But dropping a standalone ack for an exchange that no longer exists is fine; in the case above the exchange no longer exists because the first ack it got allowed us to clean it up.
- Loading branch information