[ 
https://issues.apache.org/jira/browse/AMQ-4562?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Timothy Bish resolved AMQ-4562.
-------------------------------

       Resolution: Fixed
    Fix Version/s: 5.9.0
         Assignee: Timothy Bish  (was: Torsten Mielke)

Fixed on trunk
                
> SimplePriorityMessageDispatchChannel.clear() needs to reset size attribute
> --------------------------------------------------------------------------
>
>                 Key: AMQ-4562
>                 URL: https://issues.apache.org/jira/browse/AMQ-4562
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: JMS client
>    Affects Versions: 5.8.0
>            Reporter: Torsten Mielke
>            Assignee: Timothy Bish
>             Fix For: 5.9.0
>
>
> SimplePriorityMessageDispatchChannel.clear() deletes all prefetched messages 
> but does not reset the size counter. The other method removeAll() does it 
> correctly.
> Propose to fix this as follows:
> {code:title=SimplePriorityMessageDispatchChannel.java}
>     public void clear() {
>         synchronized (mutex) {
>             for (int i = 0; i < MAX_PRIORITY; i++) {
>                 lists[i].clear();
>             }
>           size = 0;
>         }
>     }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to