[
https://issues.apache.org/jira/browse/QPID-746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Martin Ritchie resolved QPID-746.
---------------------------------
Resolution: Fixed
Fix Version/s: M2.1
> QueueEntry.setRedelivered always sets values to be true ignoring parameter
> --------------------------------------------------------------------------
>
> Key: QPID-746
> URL: https://issues.apache.org/jira/browse/QPID-746
> Project: Qpid
> Issue Type: Bug
> Components: Java Broker
> Affects Versions: M2
> Reporter: Martin Ritchie
> Assignee: Martin Ritchie
> Fix For: M2.1
>
>
> public void setRedelivered(boolean b)
> {
> getMessage().setRedelivered(true);
> }
> Should be:
> public void setRedelivered(boolean b)
> {
> getMessage().setRedelivered(b);
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.