From 5935906b0bfd05ea9cf84fc03e1b7d8befd2ff11 Mon Sep 17 00:00:00 2001 From: hiddenpath Date: Tue, 17 Dec 2024 01:13:52 +0300 Subject: [yt/cpp/mapreduce] YT-23616: Move Job methods to THttpRawClient commit_hash:bd11304f4147ff314372d4ab6049478143f60fd5 --- yt/cpp/mapreduce/client/file_reader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'yt/cpp/mapreduce/client/file_reader.cpp') diff --git a/yt/cpp/mapreduce/client/file_reader.cpp b/yt/cpp/mapreduce/client/file_reader.cpp index 408650bda90..06463d0af24 100644 --- a/yt/cpp/mapreduce/client/file_reader.cpp +++ b/yt/cpp/mapreduce/client/file_reader.cpp @@ -98,7 +98,7 @@ size_t TStreamReaderBase::DoRead(void* buf, size_t len) if (!IsRetriable(e) || attempt == retryCount) { throw; } - NDetail::TWaitProxy::Get()->Sleep(GetBackoffDuration(e, Context_.Config)); + TWaitProxy::Get()->Sleep(GetBackoffDuration(e, Context_.Config)); } catch (std::exception& e) { YT_LOG_ERROR("RSP %v - failed: %v (attempt %v of %v)", GetActiveRequestId(), @@ -112,7 +112,7 @@ size_t TStreamReaderBase::DoRead(void* buf, size_t len) if (attempt == retryCount) { throw; } - NDetail::TWaitProxy::Get()->Sleep(GetBackoffDuration(e, Context_.Config)); + TWaitProxy::Get()->Sleep(GetBackoffDuration(e, Context_.Config)); } Input_ = nullptr; } -- cgit v1.3