Skip to content

Commit 00afd45

Browse files
committed
Reverting folder rename
1 parent cf3dcc5 commit 00afd45

File tree

14 files changed

+11
-16
lines changed

14 files changed

+11
-16
lines changed

public/__redirects

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1921,11 +1921,6 @@
19211921
# workflows
19221922
/workflows/reference/storage-options/ /workers/platform/storage-options/ 301
19231923
/workflows/tutorials/ /workflows/examples 301
1924-
/workflows/reference/changelog/ /workflows/platform/changelog/ 301
1925-
/workflows/reference/glossary/ /workflows/platform/glossary/ 301
1926-
/workflows/reference/limits/ /workflows/platform/limits/ 301
1927-
/workflows/reference/pricing/ /workflows/platform/pricing/ 301
1928-
/workflows/reference/wrangler-commands/ /workflows/platform/wrangler-commands/ 301
19291924

19301925
# workers KV
19311926
/kv/platform/environments/ /kv/reference/environments/ 301

src/content/changelog/workflows/2025-02-25-workflows-concurrency-increased.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ import { Render, PackageManagers, TypeScriptExample } from "~/components";
99

1010
[Workflows](/workflows/) now supports up to 4,500 concurrent (running) instances, up from the previous limit of 100. This limit will continue to increase during the Workflows open beta. This increase applies to all users on the Workers Paid plan, and takes effect immediately.
1111

12-
Review the Workflows [limits documentation](/workflows/platform/limits) and/or dive into the [get started guide](/workflows/get-started/guide/) to start building on Workflows.
12+
Review the Workflows [limits documentation](/workflows/reference/limits) and/or dive into the [get started guide](/workflows/get-started/guide/) to start building on Workflows.

src/content/docs/workflows/build/workers-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Objects that include `Function` or `Symbol` types, and objects with circular ref
103103

104104
`step.sleep` and `step.sleepUntil` methods do not count towards the maximum Workflow steps limit.
105105

106-
More information about the limits imposed on Workflow can be found in the [Workflows limits documentation](/workflows/platform/limits/).
106+
More information about the limits imposed on Workflow can be found in the [Workflows limits documentation](/workflows/reference/limits/).
107107

108108
:::
109109

@@ -298,7 +298,7 @@ export default {
298298

299299
Create (trigger) a batch of new instance of the given Workflow, up to 100 instances at a time.
300300

301-
This is useful when you are scheduling multiple instances at once. A call to `createBatch` is treated the same as a call to `create` (for a single instance) and allows you to work within the [instance creation limit](/workflows/platform/limits/).
301+
This is useful when you are scheduling multiple instances at once. A call to `createBatch` is treated the same as a call to `create` (for a single instance) and allows you to work within the [instance creation limit](/workflows/reference/limits/).
302302

303303
* <code>createBatch(batch: WorkflowInstanceCreateOptions[]): Promise&lt;WorkflowInstance[]&gt;</code>
304304

src/content/docs/workflows/get-started/cli-quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You can build Workflows to post-process file uploads to [R2 object storage](/r2/
1717

1818
:::caution
1919

20-
This guide is for users who are already familiar with Cloudflare Workers the [durable execution](/workflows/platform/glossary/) programming model it enables.
20+
This guide is for users who are already familiar with Cloudflare Workers the [durable execution](/workflows/reference/glossary/) programming model it enables.
2121

2222
If you are new to either, we recommend the [introduction to Workflows](/workflows/get-started/guide/) guide, which walks you through how a Workflow is defined, how to persist state, and how to deploy and run your first Workflow.
2323

src/content/docs/workflows/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ Deploy dynamic front-end applications in record time.
7070

7171
<CardGrid>
7272

73-
<LinkTitleCard title="Pricing" href="/workflows/platform/pricing/" icon="seti:shell">
73+
<LinkTitleCard title="Pricing" href="/workflows/reference/pricing/" icon="seti:shell">
7474
Learn more about how Workflows is priced.
7575
</LinkTitleCard>
7676

77-
<LinkTitleCard title="Limits" href="/workflows/platform/limits/" icon="document">
77+
<LinkTitleCard title="Limits" href="/workflows/reference/limits/" icon="document">
7878
Learn more about Workflow limits, and how to work within them.
7979
</LinkTitleCard>
8080

src/content/docs/workflows/observability/metrics-analytics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The possible values for `eventType` are documented below:
4242

4343
#### Workflows-level status labels
4444

45-
- `WORKFLOW_QUEUED` - the Workflow is queued, but not currently running. This can happen when you are at the [concurrency limit](/workflows/platform/limits/) and new instances are waiting for currently running instances to complete.
45+
- `WORKFLOW_QUEUED` - the Workflow is queued, but not currently running. This can happen when you are at the [concurrency limit](/workflows/reference/limits/) and new instances are waiting for currently running instances to complete.
4646
- `WORKFLOW_START` - the Workflow has started and is running.
4747
- `WORKFLOW_SUCCESS` - the Workflow finished without errors.
4848
- `WORKFLOW_FAILURE` - the Workflow failed due to errors (exhausting retries, errors thrown, etc).
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)