Skip to content

Commit 96a0e1d

Browse files
committed
Limit local dev concurrency using the dev environment concurrency limit
Previously it was limited to max of 25, no matter the environment limit
1 parent 3157b65 commit 96a0e1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/routes/engine.v1.dev.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const loader = createLoaderApiRoute(
2020
environmentId: authentication.environment.id,
2121
dequeueIntervalWithRun: env.DEV_DEQUEUE_INTERVAL_WITH_RUN,
2222
dequeueIntervalWithoutRun: env.DEV_DEQUEUE_INTERVAL_WITHOUT_RUN,
23-
maxConcurrentRuns: env.DEV_MAX_CONCURRENT_RUNS,
23+
maxConcurrentRuns: authentication.environment.maximumConcurrencyLimit,
2424
engineUrl: env.DEV_ENGINE_URL,
2525
});
2626
} catch (error) {

0 commit comments

Comments
 (0)