You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Martin Ritchie (JIRA)" <qp...@incubator.apache.org> on 2008/01/18 14:12:33 UTC

[jira] Created: (QPID-746) QueueEntry.setRedelivered always sets values to be true ignoring parameter

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.


[jira] Resolved: (QPID-746) QueueEntry.setRedelivered always sets values to be true ignoring parameter

Posted by "Martin Ritchie (JIRA)" <qp...@incubator.apache.org>.
     [ 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.