diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-02-18 00:51:31 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-02-18 00:51:31 +0000 |
commit | d46fe70ab3363efe215e4c7b142fb2e25e772f8e (patch) | |
tree | 1931cba78c3a24456f8f0dca6d80ba3cbc147acd /yt/cpp/mapreduce/interface/errors.cpp | |
parent | c25b7ee30559ef027fbc049354af1debffb6c1c6 (diff) | |
parent | 8fe93946bc369873a7ffbb3a7403463aa80e3117 (diff) | |
download | ydb-d46fe70ab3363efe215e4c7b142fb2e25e772f8e.tar.gz |
Merge branch 'rightlib' into merge-libs-250218-0050
Diffstat (limited to 'yt/cpp/mapreduce/interface/errors.cpp')
-rw-r--r-- | yt/cpp/mapreduce/interface/errors.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/interface/errors.cpp b/yt/cpp/mapreduce/interface/errors.cpp index 42c7466dcb..fcc23fb3ac 100644 --- a/yt/cpp/mapreduce/interface/errors.cpp +++ b/yt/cpp/mapreduce/interface/errors.cpp @@ -332,7 +332,7 @@ bool TErrorResponse::IsFromTrailers() const bool TErrorResponse::IsTransportError() const { - return HttpCode_ == 503; + return Error_.ContainsErrorCode(NClusterErrorCodes::NBus::TransportError); } TString TErrorResponse::GetRequestId() const @@ -355,6 +355,22 @@ bool TErrorResponse::IsAccessDenied() const return Error_.ContainsErrorCode(NClusterErrorCodes::NSecurityClient::AuthorizationError); } +bool TErrorResponse::IsUnauthorized() const +{ + const auto allCodes = Error_.GetAllErrorCodes(); + for (auto code : { + NClusterErrorCodes::NRpc::AuthenticationError, + NClusterErrorCodes::NRpc::InvalidCsrfToken, + NClusterErrorCodes::NRpc::InvalidCredentials, + NClusterErrorCodes::NSecurityClient::AuthenticationError, + }) { + if (allCodes.contains(code)) { + return true; + } + } + return false; +} + bool TErrorResponse::IsConcurrentTransactionLockConflict() const { return Error_.ContainsErrorCode(NClusterErrorCodes::NCypressClient::ConcurrentTransactionLockConflict); |