Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2387#discussion_r231956436
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
---
@@ -289,6 +289,12 @@ public SimpleString getGroupID() {
return this.getSimpleStringProperty(Message.HDR_GROUP_ID);
}
+ @Override
+ public int getGroupSequence() {
+ final Integer integer =
this.getIntProperty(Message.HDR_GROUP_SEQUENCE);
--- End diff --
The regression introduced new, is fixed by
https://github.com/apache/activemq-artemis/pull/2418
So the new regressions will go if/when that pr is merged
---