From 5c5be128c205ae5c1f55440178497db564d81868 Mon Sep 17 00:00:00 2001 From: Sylvain Lesage Date: Fri, 23 Aug 2024 11:48:11 +0200 Subject: [PATCH] Remove temporary retryable error codes (#3044) --- libs/libcommon/src/libcommon/constants.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index 35679390e..cb20aba18 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -43,8 +43,6 @@ LARGE_MAX_FAILED_RUNS = 30 # for errors that should not be permanent MAX_FAILED_RUNS_PER_ERROR_CODE = { # default - "DatasetGenerationError": DEFAULT_MAX_FAILED_RUNS, # <- 20240822: to recompute all of them in the next backfill - "ConfigNamesError": DEFAULT_MAX_FAILED_RUNS, # <- 20240822: to recompute all of them in the next backfill "RetryableConfigNamesError": DEFAULT_MAX_FAILED_RUNS, "ConnectionError": DEFAULT_MAX_FAILED_RUNS, "ExternalServerError": DEFAULT_MAX_FAILED_RUNS,