diff options
| author | ermolovd <[email protected]> | 2026-04-16 14:45:44 +0300 |
|---|---|---|
| committer | ermolovd <[email protected]> | 2026-04-16 15:30:49 +0300 |
| commit | 24fc2c2579eb725f484ec00b24f6f8f3fd9af662 (patch) | |
| tree | 77d5cc5314301956f70196b3c74ad99abcbd4ba6 /yt/cpp | |
| parent | df7a496cb7b784f9117ea5bab2919f3bfe664ff9 (diff) | |
temporary workaround for cannot find
commit_hash:52d8ab2fc6d5aee52a3470c91fc4fff607e2768e
Diffstat (limited to 'yt/cpp')
| -rw-r--r-- | yt/cpp/mapreduce/common/retry_lib.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/common/retry_lib.cpp b/yt/cpp/mapreduce/common/retry_lib.cpp index a39001091cd..abcb9e87b1a 100644 --- a/yt/cpp/mapreduce/common/retry_lib.cpp +++ b/yt/cpp/mapreduce/common/retry_lib.cpp @@ -233,6 +233,12 @@ static TMaybe<TDuration> TryGetBackoffDuration(const TErrorResponse& errorRespon return config->RetryInterval; } } + + // Temporary workaround + if (errorResponse.GetError().ContainsText("Cannot resolve multiproxy target cluster")) { + return TDuration::Seconds(60); + } + return Nothing(); } |
