diff options
author | hor911 <hor911@yandex-team.ru> | 2022-03-17 21:19:56 +0300 |
---|---|---|
committer | hor911 <hor911@yandex-team.ru> | 2022-03-17 21:19:56 +0300 |
commit | 0cb263511ea38eefe01bd3ae496f9d0840f36b3a (patch) | |
tree | 53bd00c11114c34851b50cd013aed34d9bb8d024 | |
parent | e7ef64b2726141d8f9e3ac581e0da55410e089f0 (diff) | |
download | ydb-0cb263511ea38eefe01bd3ae496f9d0840f36b3a.tar.gz |
Don't retry ANY minikql execption
ref:fa0e5c7331905d66ac8a88ce0649ebb8662f4228
-rw-r--r-- | ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h index efb1889d5ab..21e8544983c 100644 --- a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h +++ b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h @@ -212,8 +212,7 @@ protected: << ", host: " << HostName() << ", canAllocateExtraMemory: " << CanAllocateExtraMemory); } catch (const std::exception& e) { - const TString message = e.what(); - InternalError(message.find("Terminate was called, reason(") != TString::npos ? TIssuesIds::UNEXPECTED : TIssuesIds::DEFAULT_ERROR, message); + InternalError(TIssuesIds::UNEXPECTED, e.what()); } if (reportTime) { |