Skip to content

Commit

Permalink
Increase cluster points limit
Browse files Browse the repository at this point in the history
  • Loading branch information
VisenP committed Nov 29, 2023
1 parent 7b037b7 commit bd2c7a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/routes/problem/cluster/ClusterHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const ClusterHandler = Router({ mergeParams: true });
ClusterHandler.use("/:cluster_id/testcase", TestcaseHandler);

const ClusterSchema = Type.Object({
awarded_score: Type.Number({ minimum: 1, maximum: 1000 }),
awarded_score: Type.Number({ minimum: 1, maximum: 1_000_000 }),
generator: Type.Boolean(),
generator_language: Type.Optional(EvaluationLanguageSchema),
generator_code: Type.Optional(Type.String()),
Expand Down

0 comments on commit bd2c7a2

Please sign in to comment.