franz1981 commented on issue #3055: ARTEMIS-1975 Fix AMQP paged large message 
usage counter
URL: https://github.com/apache/activemq-artemis/pull/3055#issuecomment-607367530
 
 
   I've noticed a thing while working on this PR on `PagedMessageImpl::decode`:
   ```java
         if (isLargeMessage) {
            int largeMessageHeaderSize = buffer.readInt();
   
            if (storageManager == null) {
               largeMessageLazyData = new byte[largeMessageHeaderSize];
               buffer.readBytes(largeMessageLazyData);
            } else {
   ```
   the case where `storageManager == null` and is a core message; why `usageUp` 
isn't called? 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to