Skip to content

Commit b17d9ba

Browse files
authored
Update local-development.mdx
1 parent 4d65954 commit b17d9ba

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/content/docs/queues/configuration/local-development.mdx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ wrangler --version
2727
```
2828

2929
```sh output
30-
⛅️ wrangler 3.1.0
30+
⛅️ wrangler 4.13.2
3131
```
3232

3333
Start a local dev session
@@ -39,8 +39,7 @@ npx wrangler dev
3939

4040
```sh output
4141
------------------
42-
wrangler dev now uses local mode by default, powered by 🔥 Miniflare and 👷 workerd.
43-
To run an edge preview session for your Worker, use wrangler dev --remote
42+
Your Worker and resources are simulated locally via Miniflare. For more information, see: https://developers.cloudflare.com/workers/testing/local-development.
4443
⎔ Starting local server...
4544
[mf:inf] Ready on http://127.0.0.1:8787/
4645
```
@@ -66,10 +65,11 @@ producer-worker/
6665
└── index.ts
6766
```
6867

69-
You can start the development server for both workers with the following command:
68+
You can start development servers for both workers with the following command:
7069
```sh
7170
npx wrangler dev -c wrangler.jsonc -c consumer-worker/wrangler.jsonc --persist-to .wrangler/state
7271
```
72+
7373
```sh output
7474
⛅️ wrangler 4.13.2
7575
-------------------
@@ -85,7 +85,10 @@ No bindings found.
8585
```
8686

8787
When the producer Worker sends messages to the queue, the consumer Worker will automatically be invoked to handle them.
88+
:::note
89+
[Consumer concurrency](/queues/configuration/consumer-concurrency/) is not supported while running locally.
90+
:::
8891

8992
## Known Issues
90-
93+
- Queues does not support using Wrangler remote mode.
9194
- When developing locally, you can not connect your Worker to the remote queue. Hence, Queues does not yet support `wrangler dev --remote`.

0 commit comments

Comments
 (0)