summaryrefslogtreecommitdiffstats
path: root/yt/cpp
diff options
context:
space:
mode:
authorermolovd <[email protected]>2026-04-16 14:45:44 +0300
committerermolovd <[email protected]>2026-04-16 15:30:49 +0300
commit24fc2c2579eb725f484ec00b24f6f8f3fd9af662 (patch)
tree77d5cc5314301956f70196b3c74ad99abcbd4ba6 /yt/cpp
parentdf7a496cb7b784f9117ea5bab2919f3bfe664ff9 (diff)
temporary workaround for cannot find
commit_hash:52d8ab2fc6d5aee52a3470c91fc4fff607e2768e
Diffstat (limited to 'yt/cpp')
-rw-r--r--yt/cpp/mapreduce/common/retry_lib.cpp6
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();
}