File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/sim/lib/core/execution-limits Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11import { env } from '@/lib/core/config/env'
22import type { SubscriptionPlan } from '@/lib/core/rate-limiter/types'
33
4- export interface ExecutionTimeoutConfig {
4+ interface ExecutionTimeoutConfig {
55 sync : number
66 async : number
77}
@@ -25,7 +25,7 @@ function getSyncTimeoutForPlan(plan: SubscriptionPlan): number {
2525 return ( Number . parseInt ( envVarMap [ plan ] || '' ) || DEFAULT_SYNC_TIMEOUTS [ plan ] ) * 1000
2626}
2727
28- export const EXECUTION_TIMEOUTS : Record < SubscriptionPlan , ExecutionTimeoutConfig > = {
28+ const EXECUTION_TIMEOUTS : Record < SubscriptionPlan , ExecutionTimeoutConfig > = {
2929 free : {
3030 sync : getSyncTimeoutForPlan ( 'free' ) ,
3131 async : ASYNC_TIMEOUT_SECONDS * 1000 ,
You can’t perform that action at this time.
0 commit comments