SIENTIAPDE-1717: Remove FILE_DELETE_ERROR from ExperimentStatus enum and related tests.

This commit is contained in:
Bruno Domingues
2026-03-30 14:33:19 -03:00
parent f5eb8d1e5b
commit cce350bfb1
3 changed files with 16 additions and 11 deletions

View File

@@ -18,11 +18,9 @@ class ExperimentStatus(StrEnum):
ORCHESTRATOR_VALIDATION_ERROR: Error in the parameters validation.
TRAINING_SUCCESS: Training completed successfully with model and metrics calculated.
TRAINING_ERROR: Training failed due to data issues, model errors, or other exceptions.
FILE_DELETE_ERROR: Cleanup failed due to file system or MinIO errors.
"""
ORCHESTRATOR_VALIDATION_ERROR = 'ORCHESTRATOR_VALIDATION_ERROR'
ORCHESTRATOR_WAITING_PROC = 'ORCHESTRATOR_WAITING_PROC'
TRAINING_SUCCESS = 'TRAINING_SUCCESS'
TRAINING_ERROR = 'TRAINING_ERROR'
FILE_DELETE_ERROR = 'FILE_DELETE_ERROR'