Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2488#discussion_r245009338
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionCreateConsumerMessage.java
---
@@ -25,20 +26,24 @@
private SimpleString filterString;
+ private int priority;
--- End diff --
We should support int, as AMQP uses can use -2^31 to 2^31-1.
This changes nothing on the Message size, or any space concerns, this is
Only on consumer creation.
---