Skip to content

Commit 42b3d23

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 23c5131 commit 42b3d23

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
@@ -1397,7 +1397,7 @@ const EnvironmentSchema = z
13971397
RUN_ENGINE_RUN_QUEUE_LOG_LEVEL: z
13981398
.enum(["log", "error", "warn", "info", "debug"])
13991399
.default("info"),
1400-
RUN_ENGINE_TOTAL_CONCURRENCY_LIMITS_ENABLED: z.string().default("0"),
1400+
RUN_ENGINE_TOTAL_CONCURRENCY_LIMITS_ENABLED: z.string().default("1"),
14011401
RUN_ENGINE_TREAT_PRODUCTION_EXECUTION_STALLS_AS_OOM: z.string().default("0"),
14021402
RUN_ENGINE_READ_REPLICA_SNAPSHOTS_SINCE_ENABLED: z.string().default("0"),
14031403
RUN_ENGINE_SNAPSHOTS_SINCE_REPLICA_RETRY_MIN_MS: z.coerce.number().int().default(50),

0 commit comments

Comments
 (0)