Github user gaohoward commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2090#discussion_r188604772
--- Diff:
artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/amq/AMQSession.java
---
@@ -308,6 +312,8 @@ public int sendMessage(MessageReference reference,
ServerConsumer consumer,
int deliveryCount) {
AMQConsumer theConsumer = (AMQConsumer) consumer.getProtocolData();
+ //clear up possible rolledback ids.
+ rollbackedIds.remove(message.getMessageID());
--- End diff --
Yes I know this adds some costs. But so far I couldn't have a better
solution.
---