chore(seed): remove timeLimit and memoryLimit from DockerConfig data

This commit is contained in:
cfngc4594 2025-04-10 21:57:11 +08:00
parent 17c6be8a65
commit 82428bbd09

View File

@ -21,8 +21,6 @@ const editorLanguageConfigData: Prisma.EditorLanguageConfigCreateInput[] = [
image: "gcc", image: "gcc",
tag: "latest", tag: "latest",
workingDir: "/src", workingDir: "/src",
timeLimit: 1000,
memoryLimit: 128,
compileOutputLimit: 1 * 1024 * 1024, compileOutputLimit: 1 * 1024 * 1024,
runOutputLimit: 1 * 1024 * 1024, runOutputLimit: 1 * 1024 * 1024,
}, },
@ -46,8 +44,6 @@ const editorLanguageConfigData: Prisma.EditorLanguageConfigCreateInput[] = [
image: "gcc", image: "gcc",
tag: "latest", tag: "latest",
workingDir: "/src", workingDir: "/src",
timeLimit: 1000,
memoryLimit: 128,
compileOutputLimit: 1 * 1024 * 1024, compileOutputLimit: 1 * 1024 * 1024,
runOutputLimit: 1 * 1024 * 1024, runOutputLimit: 1 * 1024 * 1024,
}, },