Hi Martin, On Sat, Jan 29, 2011 at 4:10 AM, mgfarme <[email protected]> wrote: > Why do we get different behavior on queues than on topics ? I > can put a message on a queue with no subscribers, and see it timeout after > the TTL value.
Because that is the defined semantics of a queue. Queues must hold the messages until they are consumed or until their TTL expire (or in case of non-persistent messages until the broker goes down). Best regards, Martin
