File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import {
1414 toBillingContext ,
1515} from '@/lib/billing/core/billing-attribution'
1616import { checkAndBillPayerOverageThreshold } from '@/lib/billing/threshold-billing'
17+ import { env } from '@/lib/core/config/env'
1718import { isRetryableInfrastructureError } from '@/lib/core/errors/retryable-infrastructure'
1819import { createTimeoutAbortController } from '@/lib/core/execution-limits'
1920import { RateLimiter } from '@/lib/core/rate-limiter/rate-limiter'
@@ -850,7 +851,7 @@ async function runWorkflowAndWriteTerminal(
850851
851852export const workflowGroupCellTask = task ( {
852853 id : 'workflow-group-cell' ,
853- machine : 'medium-1x' ,
854+ machine : env . APPCONFIG_ENVIRONMENT === 'dev' ? 'large-1x' : 'medium-1x' ,
854855 retry : { maxAttempts : 1 } ,
855856 // Combined with `concurrencyKey: tableId`, caps each table's sub-queue of
856857 // in-flight cell jobs while letting different tables run in parallel. The
You can’t perform that action at this time.
0 commit comments