summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/operation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yt/cpp/mapreduce/interface/operation.cpp')
-rw-r--r--yt/cpp/mapreduce/interface/operation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/cpp/mapreduce/interface/operation.cpp b/yt/cpp/mapreduce/interface/operation.cpp
index 03592b13fe3..0bb490b1ac2 100644
--- a/yt/cpp/mapreduce/interface/operation.cpp
+++ b/yt/cpp/mapreduce/interface/operation.cpp
@@ -42,7 +42,7 @@ const TString& TCommandRawJob::GetCommand() const
void TCommandRawJob::Do(const TRawJobContext& /* jobContext */)
{
- Y_FAIL("TCommandRawJob::Do must not be called");
+ Y_ABORT("TCommandRawJob::Do must not be called");
}
REGISTER_NAMED_RAW_JOB("NYT::TCommandRawJob", TCommandRawJob)
@@ -60,7 +60,7 @@ const TString& TCommandVanillaJob::GetCommand() const
void TCommandVanillaJob::Do()
{
- Y_FAIL("TCommandVanillaJob::Do must not be called");
+ Y_ABORT("TCommandVanillaJob::Do must not be called");
}
REGISTER_NAMED_VANILLA_JOB("NYT::TCommandVanillaJob", TCommandVanillaJob);