[
https://issues.apache.org/activemq/browse/AMQ-2585?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gary Tully updated AMQ-2585:
----------------------------
Component/s: JMS client
Patch Info: [Patch Available]
Affects Version/s: 5.3.0
> ActiveMQTextMessage.getSize() does not consider size of properties
> ------------------------------------------------------------------
>
> Key: AMQ-2585
> URL: https://issues.apache.org/activemq/browse/AMQ-2585
> Project: ActiveMQ
> Issue Type: Bug
> Components: JMS client
> Affects Versions: 5.3.0
> Reporter: Magnus Persson
> Assignee: Gary Tully
> Priority: Minor
> Fix For: 5.4.0
>
> Attachments: ReasonableTextMessageSize.patch
>
>
> Checking the size of a text message only considers the body of a message, not
> the properties. I think this relates to a typo in the method:
> {noformat}
> public int getSize() {
> if (size == 0 && content == null && text != null) {
> size = getMinimumMessageSize();
> if (marshalledProperties != null) {
> size += marshalledProperties.getLength();
> }
> size = text.length() * 2;
> }
> return super.getSize();
> }
> {noformat}
> This should perhaps be size += text.length() * 2?
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.