From 77ce7bc24458a0cfeaecaa20aedaded07496a84e Mon Sep 17 00:00:00 2001 From: Diogo Ferreira Date: Fri, 14 Feb 2025 10:37:36 +0000 Subject: [PATCH] add info that for Workflows, in local dev, pause and resume methods are not available --- src/content/docs/workers/local-development.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/content/docs/workers/local-development.mdx b/src/content/docs/workers/local-development.mdx index 06264dd2e472643..db88fe91bb559d6 100644 --- a/src/content/docs/workers/local-development.mdx +++ b/src/content/docs/workers/local-development.mdx @@ -48,7 +48,7 @@ npx wrangler dev | Rate Limiting | ✅ | ✅ | | Service Bindings (multiple workers) | ✅ | ✅ | | Vectorize | ✅[^2] | ✅ | -| Workflows | ✅ | ❌ | +| Workflows | ✅[^3] | ❌ | With any bindings that are not supported locally, you will need to use the [`--remote` command](#develop-using-remote-resources-and-bindings) in wrangler, such as `wrangler dev --remote`. @@ -56,6 +56,8 @@ With any bindings that are not supported locally, you will need to use the [`--r [^2]: Using Vectorize always accesses your Cloudflare account to run queries, and will incur usage charges even in local development. +[^3]: `pause()` and `resume()` are not available in local development. + ## Work with local data When running `wrangler dev`, resources such as KV, Durable Objects, D1, and R2 will be stored and persisted locally and not affect the production resources.