From 6fb62ac1f94e2f5719127e6052d13ae2e0b76e98 Mon Sep 17 00:00:00 2001 From: Ed McPadden Date: Fri, 22 Jan 2021 14:40:42 -0500 Subject: [PATCH] Update queue-group.md fix spelling error --- nats-streaming-concepts/channels/subscriptions/queue-group.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nats-streaming-concepts/channels/subscriptions/queue-group.md b/nats-streaming-concepts/channels/subscriptions/queue-group.md index a025108..90a6220 100644 --- a/nats-streaming-concepts/channels/subscriptions/queue-group.md +++ b/nats-streaming-concepts/channels/subscriptions/queue-group.md @@ -1,6 +1,6 @@ # Queue Group -When consumers want to consume from the same channel but each receive a different message, as opposed to all receiving the same messages, they need to create a queue subscription. When a queue group name is specified, the server will send each messages from the log to a single consumer in the group. The distribution of these messages is not specified, therefore applications should not rely on an expected delivery scheme. +When consumers want to consume from the same channel but each receive a different message, as opposed to all receiving the same messages, they need to create a queue subscription. When a queue group name is specified, the server will send each message from the log to a single consumer in the group. The distribution of these messages is not specified, therefore applications should not rely on an expected delivery scheme. After the first queue member is created, any other member joining the group will receive messages based on where the server is in the message log for that particular group. That means that the starting position given by joining members is ignored by the server.