Skip to content

Commit 977b3a9

Browse files
authored
Uncomment Queues config lines in C3 templates (#3681)
1 parent 8f25712 commit 977b3a9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/create-cloudflare/templates/queues/js/wrangler.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ compatibility_date = "<TBD>"
44

55
# Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
66
# Docs: https://developers.cloudflare.com/queues/get-started
7-
# [[queues.producers]]
7+
[[queues.producers]]
88
binding = "MY_QUEUE"
99
queue = "my-queue"
1010

1111
# Bind a Queue consumer. Queue Consumers can retrieve tasks scheduled by Producers to act on them.
1212
# Docs: https://developers.cloudflare.com/queues/get-started
13-
# [[queues.consumers]]
13+
[[queues.consumers]]
1414
queue = "my-queue"
1515
# Optional: Configure batching and retries: https://developers.cloudflare.com/queues/learning/batching-retries/
1616
# max_batch_size = 10

packages/create-cloudflare/templates/queues/ts/wrangler.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ compatibility_date = "<TBD>"
44

55
# Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
66
# Docs: https://developers.cloudflare.com/queues/get-started
7-
# [[queues.producers]]
7+
[[queues.producers]]
88
binding = "MY_QUEUE"
99
queue = "my-queue"
1010

1111
# Bind a Queue consumer. Queue Consumers can retrieve tasks scheduled by Producers to act on them.
1212
# Docs: https://developers.cloudflare.com/queues/get-started
13-
# [[queues.consumers]]
13+
[[queues.consumers]]
1414
queue = "my-queue"
1515
# Optional: Configure batching and retries: https://developers.cloudflare.com/queues/learning/batching-retries/
1616
# max_batch_size = 10

0 commit comments

Comments
 (0)