Open
Description
The documentation says that to delete a message pulled from the queue you just do:
$message->delete();
In reality this fails with a 403. You have to specify the claim ID to properly delete the message. The code that I got working looks like:
$claimId = $message->getClaimIdFromHref();
$message->delete($claimId);