From 82428bbd097c1da34046fef50af1ec2de7c1d358 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Thu, 10 Apr 2025 21:57:11 +0800 Subject: [PATCH] chore(seed): remove timeLimit and memoryLimit from DockerConfig data --- prisma/seed.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/prisma/seed.ts b/prisma/seed.ts index 24e8810..8c00c9d 100644 --- a/prisma/seed.ts +++ b/prisma/seed.ts @@ -21,8 +21,6 @@ const editorLanguageConfigData: Prisma.EditorLanguageConfigCreateInput[] = [ image: "gcc", tag: "latest", workingDir: "/src", - timeLimit: 1000, - memoryLimit: 128, compileOutputLimit: 1 * 1024 * 1024, runOutputLimit: 1 * 1024 * 1024, }, @@ -46,8 +44,6 @@ const editorLanguageConfigData: Prisma.EditorLanguageConfigCreateInput[] = [ image: "gcc", tag: "latest", workingDir: "/src", - timeLimit: 1000, - memoryLimit: 128, compileOutputLimit: 1 * 1024 * 1024, runOutputLimit: 1 * 1024 * 1024, },