From 80820496589a0c742f92cacb092e87c62f91cce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me> Date: Tue, 3 Oct 2023 14:19:27 +0200 Subject: [PATCH] ExerciseCheckerError => The results file not found error is now deprecated --- types/Dojo/ExerciseCheckerError.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/types/Dojo/ExerciseCheckerError.ts b/types/Dojo/ExerciseCheckerError.ts index 21bb0d9..37a1b49 100644 --- a/types/Dojo/ExerciseCheckerError.ts +++ b/types/Dojo/ExerciseCheckerError.ts @@ -4,10 +4,15 @@ enum ExerciseCheckerError { DOCKER_COMPOSE_LOGS_ERROR = 202, DOCKER_COMPOSE_DOWN_ERROR = 203, EXERCISE_RESULTS_FOLDER_TOO_BIG = 204, - EXERCISE_RESULTS_FILE_NOT_FOUND = 205, EXERCISE_RESULTS_FILE_SCHEMA_NOT_VALID = 206, UPLOAD = 207 } +/** + * Codes that are unusable for historic reasons: + * - 205: EXERCISE_RESULTS_FILE_NOT_FOUND => From the version 2.2.0 this error is not possible anymore because the results file is now optional + */ + + export default ExerciseCheckerError; \ No newline at end of file -- GitLab