From 27d6a8f50e44b03c8c4541df6b84d8859b0d0cbf Mon Sep 17 00:00:00 2001 From: matt-codecov <137832199+matt-codecov@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:40:20 -0800 Subject: [PATCH] add PROCESSING_TIMEOUT upload error code (#431) --- shared/upload/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/upload/constants.py b/shared/upload/constants.py index 4a5d4ab4e..1e33190c4 100644 --- a/shared/upload/constants.py +++ b/shared/upload/constants.py @@ -228,6 +228,7 @@ class UploadErrorCode(StrEnum): FILE_NOT_IN_STORAGE = "file_not_in_storage" REPORT_EXPIRED = "report_expired" REPORT_EMPTY = "report_empty" + PROCESSING_TIMEOUT = "processing_timeout" # We don't want these - try to add error cases when they arise UNKNOWN_PROCESSING = "unknown_processing"