We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfa69a7 commit 3edbb9eCopy full SHA for 3edbb9e
yt/cpp/mapreduce/common/retry_lib.cpp
@@ -230,6 +230,7 @@ static TMaybe<TDuration> TryGetBackoffDuration(const TErrorResponse& errorRespon
230
NRpc::Unavailable,
231
NApi::RetriableArchiveError,
232
NSequoiaClient::SequoiaRetriableError,
233
+ NRpc::TransientFailure,
234
Canceled,
235
}) {
236
if (allCodes.contains(code)) {
yt/cpp/mapreduce/interface/error_codes.h
@@ -39,6 +39,8 @@ namespace NRpc {
39
constexpr int InvalidCsrfToken = 110;
40
constexpr int InvalidCredentials = 111;
41
constexpr int StreamingNotSupported = 112;
42
+ constexpr int TransientFailure = 116;
43
+
44
45
////////////////////////////////////////////////////////////////////////////////
46
0 commit comments