You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "patrick peck (JIRA)" <ji...@apache.org> on 2017/08/04 09:04:00 UTC

[jira] [Created] (ARTEMIS-1323) REST: manual acknowledgment not working as documented

patrick peck created ARTEMIS-1323:
-------------------------------------

             Summary: REST: manual acknowledgment not working as documented
                 Key: ARTEMIS-1323
                 URL: https://issues.apache.org/jira/browse/ARTEMIS-1323
             Project: ActiveMQ Artemis
          Issue Type: Bug
    Affects Versions: 2.3.0
            Reporter: patrick peck


Manually acknowledging messages in the REST interface does not work as documented. 

Documentation says:

* HTTP code returned is 200
* the response will contain a new msg-acknowledge-next header that you must use to obtain the next message.

However, it actually:

* returns HTTP code 204
* the msg-acknowledge-next header will always be "acknowledge-next-1"

Relevant code is at the end of method AcknowledgedQueueConsumer.acknowledge()

{{      Response.ResponseBuilder builder = Response.noContent();
      setAcknowledgeLinks(uriInfo, basePath, builder, "-1");
      return builder.build();}}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)