Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/sim/app/api/schedules/execute/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export const dynamic = 'force-dynamic'
export const maxDuration = 3600

const logger = createLogger('ScheduledExecuteAPI')
const MAX_CRON_CLAIMS = 20
const RESERVED_WORKFLOW_CLAIMS = 10
const MAX_CRON_CLAIMS = 200
const RESERVED_WORKFLOW_CLAIMS = 100
Comment thread
TheodoreSpeaks marked this conversation as resolved.
const RESERVED_JOB_CLAIMS = MAX_CRON_CLAIMS - RESERVED_WORKFLOW_CLAIMS
const STALE_SCHEDULE_CLAIM_MS = getMaxExecutionTimeout()

Expand Down
Loading