Skip to content

Commit 49c1d49

Browse files
authored
cant to cannot (#55)
1 parent 9531a27 commit 49c1d49

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modules/subscriptions/pages/astream-subscriptions-exclusive.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Exception in thread "main" java.lang.IllegalStateException: Cannot connect to pu
7373
Caused by: org.apache.pulsar.client.api.PulsarClientException$ConsumerBusyException: {"errorMsg":"Exclusive consumer is already connected","reqId":2964994443801550457, "remote":"<service_url>", "local":"/192.168.0.95:55777"}
7474
----
7575
76-
The second consumer can't subscribe to the topic because the subscription is *exclusive*. +
76+
The second consumer cannot subscribe to the topic because the subscription is *exclusive*. +
7777
7878
In the example above, the consumer didn't declare a subscription type, so {pulsar-short} created an exclusive subscription by default. +
7979
To explicitly define an exclusive subscription, add `.subscriptionType(SubscriptionType.Exclusive)` to the consumer.

modules/subscriptions/pages/astream-subscriptions-keyshared.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Caused by: org.apache.pulsar.client.api.PulsarClientException$ConsumerAssignExce
126126
at com.datastax.pulsar.SimplePulsarConsumer.main(SimplePulsarConsumer.java:47)
127127
----
128128
129-
The new consumer can't subscribe to the topic because you reserved the entire hash range for the first consumer.
129+
The new consumer cannot subscribe to the topic because you reserved the entire hash range for the first consumer.
130130
131131
== Key_Shared subscription video
132132

modules/subscriptions/pages/astream-subscriptions-shared.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The confirmation message and a cursor appear to indicate the consumer is ready.
7070
7171
. Open as many terminals as you'd like and run `SimplePulsarConsumer.java`. All the consumers subscribe to the topic and consume messages in a round-robin fashion.
7272
73-
If you run this test with xref:astream-subscriptions-exclusive.adoc[exclusive subscriptions], you can't attach more than once subscriber to the exclusive topic.
73+
If you run this test with xref:astream-subscriptions-exclusive.adoc[exclusive subscriptions], you cannot attach more than once subscriber to the exclusive topic.
7474
Since this test uses shared subscriptions, you can attach multiple consumers to the topic.
7575
7676
== Shared subscription video

modules/use-cases-architectures/pages/change-data-capture/questions-and-patterns.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ For more, see the https://docs.datastax.com/en/cdc-for-cassandra/docs/latest/ins
6363
.Does the {cass-short} Source Connector use a dead-letter topic?
6464
[%collapsible]
6565
====
66-
A dead letter topic is used when a message can't be delivered to a consumer. Maybe the message acknowledgment time expired (no consumer acknowledged receipt of the message), or a consumer negatively acknowledged the message, or a retry letter topic is in use and retries were exhausted.
66+
A dead letter topic is used when a message cannot be delivered to a consumer. Maybe the message acknowledgment time expired (no consumer acknowledged receipt of the message), or a consumer negatively acknowledged the message, or a retry letter topic is in use and retries were exhausted.
6767
6868
The {cass-short} Source Connector creates a consumer to receive new event messages from the CDC agent, but does not configure a dead letter topic. It is assumed that parallel instances, broker compute, and function worker compute will be sized to handle the workload.
6969
====

0 commit comments

Comments
 (0)