diff --git a/jetstream/administration/consumers.md b/jetstream/administration/consumers.md index e3e21ac..3506676 100644 --- a/jetstream/administration/consumers.md +++ b/jetstream/administration/consumers.md @@ -184,11 +184,11 @@ Acknowledged message You can prevent ACKs by supplying `--no-ack`. -To do this from code you'd send a `Request()` to `$JS.NEXT.ORDERS.DISPATCH`: +To do this from code you'd send a `Request()` to `$JS.API.CONSUMER.MSG.NEXT.ORDERS.DISPATCH`: ``` -$ nats req '$JS.NEXT.ORDERS.DISPATCH' '' -Published [$JS.NEXT.ORDERS.DISPATCH] : '' +$ nats req '$JS.API.CONSUMER.MSG.NEXT.ORDERS.DISPATCH' '' +Published [$JS.API.CONSUMER.MSG.NEXT.ORDERS.DISPATCH] : '' Received [ORDERS.processed] : 'order 3' ``` @@ -216,4 +216,4 @@ Listening on [monitor.ORDERS] Note the subject here of the received message is reported as `ORDERS.processed` this helps you distinguish what you're seeing in a Stream covering a wildcard, or multiple subject, subject space. -This Consumer needs no ack, so any new message into the ORDERS system will show up here in real time. \ No newline at end of file +This Consumer needs no ack, so any new message into the ORDERS system will show up here in real time.