mirror of
https://github.com/cloudflare/skills.git
synced 2026-04-25 06:35:50 +03:00
[GH-ISSUE #22] Workflows gotchas: subrequest limit is wrong (per-step vs per-instance, incorrect values) #6
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/skills#6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @FredKSchott on GitHub (Feb 18, 2026).
Original GitHub issue: https://github.com/cloudflare/skills/issues/22
The workflows gotchas reference at
references/workflows/gotchas.mdhas an incorrect entry in the Limits table:This is wrong in two ways:
Per-step vs per-instance — The subrequest limit applies per Workflow instance, not per step. The official docs at https://developers.cloudflare.com/workflows/reference/limits/ state: "Maximum number of subrequests per Workflow instance."
Wrong values — The paid plan limit is 10,000 (default), configurable up to 10 million via
limits.subrequestsin wrangler config. The free plan limit is 50. The table shows 1,000 for paid which is incorrect.The corrected row should be:
Source: https://developers.cloudflare.com/workflows/reference/limits/