aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhiddenpath <hiddenpath@yandex-team.com>2025-03-31 16:42:44 +0300
committerhiddenpath <hiddenpath@yandex-team.com>2025-03-31 16:58:25 +0300
commit6b74e5fc302c8ed5e0402c361142cb26017ffbb4 (patch)
tree659cabac1ab76cafdf51839ac48ad2d1d5da0941
parent30647eeae1a5f0019fd1b41b2a2835221e49ed46 (diff)
downloadydb-6b74e5fc302c8ed5e0402c361142cb26017ffbb4.tar.gz
YT-24660: Add retry for timeout generic error
commit_hash:865fce03f413e78b138e4e92b9d11d11be696d02
-rw-r--r--yt/cpp/mapreduce/common/retry_lib.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/common/retry_lib.cpp b/yt/cpp/mapreduce/common/retry_lib.cpp
index 53216bd3f86..e898bfc3814 100644
--- a/yt/cpp/mapreduce/common/retry_lib.cpp
+++ b/yt/cpp/mapreduce/common/retry_lib.cpp
@@ -227,6 +227,7 @@ static TMaybe<TDuration> TryGetBackoffDuration(const TErrorResponse& errorRespon
NSequoiaClient::SequoiaRetriableError,
NRpc::TransientFailure,
Canceled,
+ Timeout,
}) {
if (allCodes.contains(code)) {
return config->RetryInterval;