Skip to content

Commit 8220277

Browse files
authored
Update configure-queues.mdx
1 parent f6deb8a commit 8220277

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/content/docs/queues/configuration/configure-queues.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ import { WranglerConfig, Type } from "~/components";
1414
Cloudflare Queues can be configured using [Wrangler](/workers/wrangler/install-and-update/), the command-line interface for Cloudflare's Developer Platform, which includes [Workers](/workers/), [R2](/r2/), and other developer products.
1515

1616

17-
Each Producer and Consumer Worker has a [Wrangler configuration file](/workers/wrangler/configuration/) that specifies environment variables, triggers, and resources, such as a Queue. To enable Worker-to-resource communication, you must set up a [binding](/workers/runtime-apis/bindings/) in your Worker project's Wrangler file.
17+
Each Producer and Consumer Worker has a [Wrangler configuration file](/workers/wrangler/configuration/) that specifies environment variables, triggers, and resources, such as a queue. To enable Worker-to-resource communication, you must set up a [binding](/workers/runtime-apis/bindings/) in your Worker project's Wrangler file.
1818

1919
Use the options below to configure your queue.
2020

2121
:::note
2222

2323

24-
Below are options for Queues, refer to the Wrangler documentation for a full reference of the [Wrangler configuration file](/workers/wrangler/configuration/).
24+
Below are options for queues, refer to the Wrangler documentation for a full reference of the [Wrangler configuration file](/workers/wrangler/configuration/).
2525

2626

2727
:::
2828

2929
## Queue configuration
30-
The following Queue level settings can be configured using Wrangler:
30+
The following queue level settings can be configured using Wrangler:
3131

3232
```sh
3333
$ npx run wrangler queues update --delivery-delay-secs 60 --message-retention-period-secs 3000
@@ -63,7 +63,7 @@ To produce to a queue, set up a binding in your Wrangler file. These options sho
6363

6464
* <code>queue</code> <Type text="string" />
6565

66-
* The name of the Queue.
66+
* The name of the queue.
6767

6868
* <code>binding</code> <Type text="string" />
6969

@@ -96,7 +96,7 @@ Refer to [Limits](/queues/platform/limits) to review the maximum values for each
9696

9797
* <code>queue</code> <Type text="string" />
9898

99-
* The name of the Queue.
99+
* The name of the queue.
100100

101101
* <code>max\_batch\_size</code> <Type text="number" /> <Type text="optional" />
102102

@@ -115,9 +115,9 @@ Refer to [Limits](/queues/platform/limits) to review the maximum values for each
115115

116116
* <code>dead\_letter\_queue</code> <Type text="string" /> <Type text="optional" />
117117

118-
* The name of another Queue to send a message if it fails processing at least `max_retries` times.
118+
* The name of another queue to send a message if it fails processing at least `max_retries` times.
119119
* If a `dead_letter_queue` is not defined, messages that repeatedly fail processing will eventually be discarded.
120-
* If there is no Queue with the specified name, it will be created automatically.
120+
* If there is no queue with the specified name, it will be created automatically.
121121

122122
* <code>max\_concurrency</code> <Type text="number" /> <Type text="optional" />
123123

0 commit comments

Comments
 (0)