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
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.