-
Notifications
You must be signed in to change notification settings - Fork 42
Closed
Labels
Description
Summary
When clicking "Get message" it just responds "No messages in queue", even though there are messages there.
Current Behavior
Pretty sure this is due to us using basic_get which isn't a thing for Stream Queues:
lavinmq/src/lavinmq/amqp/queue/stream_queue.cr
Lines 65 to 68 in fa0cbdc
| # Stream queues does not support basic_get, so always returns `false` | |
| def basic_get(no_ack, force = false, & : Envelope -> Nil) : Bool | |
| false | |
| end |
Desired Behavior
I'd like to be able to "look at" any message in the stream, e.g. first, last or position N.
Screenshots/Mockups

kickster97