chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
import { type ActionFunctionArgs, json } from "@remix-run/server-runtime";
|
||||
import { z } from "zod";
|
||||
import { prisma } from "~/db.server";
|
||||
import { requireAdminApiRequest } from "~/services/personalAccessToken.server";
|
||||
import { controlPlaneResolver } from "~/v3/runOpsMigration/controlPlaneResolver.server";
|
||||
import { updateEnvConcurrencyLimits } from "~/v3/runQueue.server";
|
||||
|
||||
const ParamsSchema = z.object({
|
||||
environmentId: z.string(),
|
||||
});
|
||||
|
||||
const RequestBodySchema = z.object({
|
||||
burstFactor: z.number().positive(),
|
||||
});
|
||||
|
||||
export async function action({ request, params }: ActionFunctionArgs) {
|
||||
await requireAdminApiRequest(request);
|
||||
|
||||
const { environmentId } = ParamsSchema.parse(params);
|
||||
const body = RequestBodySchema.parse(await request.json());
|
||||
|
||||
const environment = await prisma.runtimeEnvironment.update({
|
||||
where: { id: environmentId },
|
||||
data: { concurrencyLimitBurstFactor: body.burstFactor },
|
||||
include: { organization: true, project: true },
|
||||
});
|
||||
|
||||
await updateEnvConcurrencyLimits(environment);
|
||||
|
||||
controlPlaneResolver.invalidateEnvironment(environmentId);
|
||||
|
||||
return json({ success: true });
|
||||
}
|
||||
Reference in New Issue
Block a user