diff options
| author | hiddenpath <[email protected]> | 2024-12-30 22:46:56 +0300 |
|---|---|---|
| committer | hiddenpath <[email protected]> | 2024-12-30 23:01:18 +0300 |
| commit | 858f5df7e684eabcc6ef9c8d445bd32381a95621 (patch) | |
| tree | b3c5c4542af03b02884da4931bbc0f5367d8c883 /yt/cpp/mapreduce/client/operation.cpp | |
| parent | 97e3740b60a24dcc59955b91f5fa29a9e680788d (diff) | |
Remove GetJobStderrWithRetries implementation
commit_hash:82415cda0a9f8b805716194b0147c3e2a41d04a3
Diffstat (limited to 'yt/cpp/mapreduce/client/operation.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/client/operation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/client/operation.cpp b/yt/cpp/mapreduce/client/operation.cpp index 9441c7efe21..f9eb4b7fc39 100644 --- a/yt/cpp/mapreduce/client/operation.cpp +++ b/yt/cpp/mapreduce/client/operation.cpp @@ -358,7 +358,7 @@ TString GetJobStderrWithRetriesAndIgnoreErrors( jobStderr = RequestWithRetry<TString>( retryPolicy, [&rawClient, &operationId, &jobId, &options] (TMutationId /*mutationId*/) { - return rawClient->GetJobStderrWithRetries(operationId, jobId, options); + return rawClient->GetJobStderr(operationId, jobId, options)->ReadAll(); }); } catch (const TErrorResponse& e) { YT_LOG_ERROR("Cannot get job stderr (OperationId: %v, JobId: %v, Error: %v)", |
