From 7f23b9057c0eb4a25931666e9f082a045ee04802 Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Wed, 4 Feb 2026 01:04:30 -0800 Subject: [PATCH] update docs --- apps/docs/content/docs/en/execution/costs.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/en/execution/costs.mdx b/apps/docs/content/docs/en/execution/costs.mdx index c3524f180..21f2302df 100644 --- a/apps/docs/content/docs/en/execution/costs.mdx +++ b/apps/docs/content/docs/en/execution/costs.mdx @@ -225,8 +225,8 @@ Workflows have maximum execution time limits based on your subscription plan: | **Enterprise** | 60 minutes | 90 minutes | **Sync executions** run immediately and return results directly. These are triggered via the API with `async: false` (default) or through the UI. +**Async executions** (triggered via API with `async: true`, webhooks, or schedules) run in the background. Async time limits are up to 2x the sync limit, capped at 90 minutes. -**Async executions** (triggered via API with `async: true`, webhooks, or schedules) run in the background. Async time limits are 2x the sync limit, capped at 90 minutes. If a workflow exceeds its time limit, it will be terminated and marked as failed with a timeout error. Design long-running workflows to use async execution or break them into smaller workflows.