From 0847eefd511d6da2df85a7e5e070f991b425d526 Mon Sep 17 00:00:00 2001 From: Sylvain Lesage Date: Tue, 27 Aug 2024 14:50:24 +0000 Subject: [PATCH] remove obsolete retryable error codes we don't have these error codes in the database anymore --- libs/libcommon/src/libcommon/constants.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index e8cd25aab..4af3a0607 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -42,14 +42,6 @@ DEFAULT_MAX_FAILED_RUNS = 3 LARGE_MAX_FAILED_RUNS = 30 # for errors that should not be permanent MAX_FAILED_RUNS_PER_ERROR_CODE = { - # 20240823 - temporary until all these deprecated errors disappear - "UnsupportedExternalFilesError": DEFAULT_MAX_FAILED_RUNS, - "ExternalFilesSizeRequestError": DEFAULT_MAX_FAILED_RUNS, - "ExternalFilesSizeRequestHTTPError": DEFAULT_MAX_FAILED_RUNS, - "ExternalFilesSizeRequestConnectionError": DEFAULT_MAX_FAILED_RUNS, - "ExternalFilesSizeRequestTimeoutError": DEFAULT_MAX_FAILED_RUNS, - "DatasetModuleNotInstalledError": DEFAULT_MAX_FAILED_RUNS, - "DatasetScriptError": DEFAULT_MAX_FAILED_RUNS, # default "RetryableConfigNamesError": DEFAULT_MAX_FAILED_RUNS, "ConnectionError": DEFAULT_MAX_FAILED_RUNS,