File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -170,13 +170,11 @@ export const env = createEnv({
170170 RATE_LIMIT_ENTERPRISE_SYNC : z . string ( ) . optional ( ) . default ( '600' ) , // Enterprise tier sync API executions per minute
171171 RATE_LIMIT_ENTERPRISE_ASYNC : z . string ( ) . optional ( ) . default ( '5000' ) , // Enterprise tier async API executions per minute
172172
173- // Sync execution timeouts in seconds (applies to synchronous API calls)
173+ // Timeout Configuration
174174 EXECUTION_TIMEOUT_FREE : z . string ( ) . optional ( ) . default ( '300' ) , // 5 minutes
175175 EXECUTION_TIMEOUT_PRO : z . string ( ) . optional ( ) . default ( '3000' ) , // 50 minutes
176176 EXECUTION_TIMEOUT_TEAM : z . string ( ) . optional ( ) . default ( '3000' ) , // 50 minutes
177177 EXECUTION_TIMEOUT_ENTERPRISE : z . string ( ) . optional ( ) . default ( '3000' ) , // 50 minutes
178-
179- // Async execution timeouts in seconds (applies to async/background job executions)
180178 EXECUTION_TIMEOUT_ASYNC_FREE : z . string ( ) . optional ( ) . default ( '5400' ) , // 90 minutes
181179 EXECUTION_TIMEOUT_ASYNC_PRO : z . string ( ) . optional ( ) . default ( '5400' ) , // 90 minutes
182180 EXECUTION_TIMEOUT_ASYNC_TEAM : z . string ( ) . optional ( ) . default ( '5400' ) , // 90 minutes
You can’t perform that action at this time.
0 commit comments