Skip to content

Commit ad05459

Browse files
committed
feat(webapp): enable combined concurrency limit enforcement by default
The env var stays as a kill switch: set RUN_ENGINE_TOTAL_CONCURRENCY_LIMITS_ENABLED=0 to disable enforcement without redeploying code. Off by default previously meant the SDK, dashboard, and API surfaced combined limits that nothing enforced.
1 parent 86655ab commit ad05459

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/webapp/app/env.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1377,7 +1377,7 @@ const EnvironmentSchema = z
13771377
RUN_ENGINE_RUN_QUEUE_LOG_LEVEL: z
13781378
.enum(["log", "error", "warn", "info", "debug"])
13791379
.default("info"),
1380-
RUN_ENGINE_TOTAL_CONCURRENCY_LIMITS_ENABLED: z.string().default("0"),
1380+
RUN_ENGINE_TOTAL_CONCURRENCY_LIMITS_ENABLED: z.string().default("1"),
13811381
RUN_ENGINE_TREAT_PRODUCTION_EXECUTION_STALLS_AS_OOM: z.string().default("0"),
13821382
RUN_ENGINE_READ_REPLICA_SNAPSHOTS_SINCE_ENABLED: z.string().default("0"),
13831383
RUN_ENGINE_SNAPSHOTS_SINCE_REPLICA_RETRY_MIN_MS: z.coerce.number().int().default(50),

0 commit comments

Comments
 (0)