You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/queues/configuration/configure-queues.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,20 +14,20 @@ import { WranglerConfig, Type } from "~/components";
14
14
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.
15
15
16
16
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.
18
18
19
19
Use the options below to configure your queue.
20
20
21
21
:::note
22
22
23
23
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/).
25
25
26
26
27
27
:::
28
28
29
29
## Queue configuration
30
-
The following Queue level settings can be configured using Wrangler:
30
+
The following queue level settings can be configured using Wrangler:
31
31
32
32
```sh
33
33
$ 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
63
63
64
64
* <code>queue</code> <Typetext="string" />
65
65
66
-
* The name of the Queue.
66
+
* The name of the queue.
67
67
68
68
* <code>binding</code> <Typetext="string" />
69
69
@@ -96,7 +96,7 @@ Refer to [Limits](/queues/platform/limits) to review the maximum values for each
0 commit comments