AntonRoskvist commented on PR #6020: URL: https://github.com/apache/activemq-artemis/pull/6020#issuecomment-3467422819
So to clarify the change... if the `AsynchronousProducerCreditsImpl` receives credits and lands on a balance of exactly `0`. The callback to the bridge will set `blockedOnFlowControl = true` based on `balance <= 0` but the following handling of credit starvation evaluates `balance < 0` so it is not executed. Following this, the bridge will return all calls to `handle` with `HandleStatus.BUSY` so it will never attempt to get more credits, effectively locking it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information, visit: https://activemq.apache.org/contact
