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/changelog/queues/2025-04-17-pull-consumer-limits.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ date: 2025-04-17 12:00:00 UTC
11
11
Pull consumers allow you to consume messages over HTTP from any environment—including outside of [Cloudflare Workers](/workers). They’re also useful when you need fine-grained control over how quickly messages are consumed.
12
12
13
13
To setup a new queue with a pull based consumer using [Wrangler](/workers/wrangler/), run:
14
-
```bash title="Create a queue with a pull based consumer"
15
-
$ npx wrangler queues create my-queue
16
-
$ npx wrangler queues consumer http add my-queue
14
+
```sh title="Create a queue with a pull based consumer"
15
+
npx wrangler queues create my-queue
16
+
npx wrangler queues consumer http add my-queue
17
17
```
18
18
You can also configure a pull consumer using the [REST API](/api/resources/queues/subresources/consumers/methods/create/) or the Queues dashboard.
0 commit comments