Github user clebertsuconic commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1722#discussion_r157487888
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/ServerPacketDecoder.java
---
@@ -115,6 +123,8 @@ public Packet decode(final ActiveMQBuffer in) {
switch (packetType) {
case SESS_SEND:
return decodeSessionSendMessage(in);
+ case SESS_SEND_V2:
+ return decodeSessionSendMessageV2(in);
--- End diff --
This will clash with my changes... that's about to be merged today.
---