summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/file_reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yt/cpp/mapreduce/client/file_reader.cpp')
-rw-r--r--yt/cpp/mapreduce/client/file_reader.cpp4
1 files changed, 2 insertions, 2 deletions
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;
}