Github user gaohoward commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/2090#discussion_r188604794 --- Diff: artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/amq/AMQSession.java --- @@ -95,6 +97,8 @@ private final SimpleString clientId; + private final Set<Long> rollbackedIds = new ConcurrentHashSet<>(); --- End diff -- This I can do. Thanks!
---