Skip to content
Prev Previous commit
Next Next commit
improvement(oom): increase trigger machine size (#3196)
  • Loading branch information
waleedlatif1 authored Feb 11, 2026
commit f3e994baf0ad73dea2756f934ba402a6e1a29e35
1 change: 1 addition & 0 deletions apps/sim/background/schedule-execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,7 @@ export async function executeScheduleJob(payload: ScheduleExecutionPayload) {

export const scheduleExecution = task({
id: 'schedule-execution',
machine: 'medium-1x',
retry: {
maxAttempts: 1,
},
Expand Down
1 change: 1 addition & 0 deletions apps/sim/background/webhook-execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,7 @@ async function executeWebhookJobInternal(

export const webhookExecution = task({
id: 'webhook-execution',
machine: 'medium-1x',
retry: {
maxAttempts: 1,
},
Expand Down
1 change: 1 addition & 0 deletions apps/sim/background/workflow-execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,5 +197,6 @@ export async function executeWorkflowJob(payload: WorkflowExecutionPayload) {

export const workflowExecutionTask = task({
id: 'workflow-execution',
machine: 'medium-1x',
run: executeWorkflowJob,
})
Loading