You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/execution/costs.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,9 +220,9 @@ Workflows have maximum execution time limits based on your subscription plan:
220
220
| Plan | Sync Execution | Async Execution |
221
221
|------|----------------|-----------------|
222
222
|**Free**| 5 minutes | 10 minutes |
223
-
|**Pro**|60 minutes | 90 minutes |
224
-
|**Team**|60 minutes | 90 minutes |
225
-
|**Enterprise**|60 minutes | 90 minutes |
223
+
|**Pro**|50 minutes | 90 minutes |
224
+
|**Team**|50 minutes | 90 minutes |
225
+
|**Enterprise**|50 minutes | 90 minutes |
226
226
227
227
**Sync executions** run immediately and return results directly. These are triggered via the API with `async: false` (default) or through the UI.
228
228
**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.
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/subscription/plan-configs.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ import type { PlanFeature } from '@/app/workspace/[workspaceId]/w/components/sid
15
15
exportconstPRO_PLAN_FEATURES: PlanFeature[]=[
16
16
{icon: Zap,text: '150 runs per minute (sync)'},
17
17
{icon: Clock,text: '1,000 runs per minute (async)'},
18
-
{icon: Timer,text: '60 min sync execution limit'},
18
+
{icon: Timer,text: '50 min sync execution limit'},
0 commit comments