diff options
| author | hiddenpath <[email protected]> | 2025-01-21 21:30:17 +0300 |
|---|---|---|
| committer | hiddenpath <[email protected]> | 2025-01-21 21:45:30 +0300 |
| commit | 509f362768699c4fe45d6d5254014c85a3cbdc99 (patch) | |
| tree | 70c376f6e0245223018494088ac513cbc7626fea | |
| parent | b43fa924bdf3f714f2ce7e109ed65c3a71f3e2a6 (diff) | |
YT-23616: Add TryGet method for TRpcRawClient
commit_hash:4caf058e62d91c296c130ed11a6f6adbc636d52e
| -rw-r--r-- | yt/cpp/mapreduce/raw_client/raw_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/raw_client/raw_client.cpp b/yt/cpp/mapreduce/raw_client/raw_client.cpp index f25fe5a4ee7..3586751191e 100644 --- a/yt/cpp/mapreduce/raw_client/raw_client.cpp +++ b/yt/cpp/mapreduce/raw_client/raw_client.cpp @@ -49,7 +49,7 @@ TNode THttpRawClient::TryGet( if (!error.IsResolveError()) { throw; } - return TNode(); + return {}; } } |
