Skip to content

Commit ae43131

Browse files
committed
improvement(oom): increase trigger machine size (#3196)
1 parent 808dc4f commit ae43131

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

apps/sim/background/schedule-execution.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ export async function executeScheduleJob(payload: ScheduleExecutionPayload) {
589589

590590
export const scheduleExecution = task({
591591
id: 'schedule-execution',
592+
machine: 'medium-1x',
592593
retry: {
593594
maxAttempts: 1,
594595
},

apps/sim/background/webhook-execution.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,7 @@ async function executeWebhookJobInternal(
669669

670670
export const webhookExecution = task({
671671
id: 'webhook-execution',
672+
machine: 'medium-1x',
672673
retry: {
673674
maxAttempts: 1,
674675
},

apps/sim/background/workflow-execution.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,6 @@ export async function executeWorkflowJob(payload: WorkflowExecutionPayload) {
197197

198198
export const workflowExecutionTask = task({
199199
id: 'workflow-execution',
200+
machine: 'medium-1x',
200201
run: executeWorkflowJob,
201202
})

0 commit comments

Comments
 (0)