aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwhcrc <whcrc@yandex-team.ru>2022-04-08 21:50:56 +0300
committerwhcrc <whcrc@yandex-team.ru>2022-04-08 21:50:56 +0300
commit5b5d57c2bf1cddbcfec07a78d4111599063c976a (patch)
tree0e9d9f5c2122b7bf19124301c212df33d876c0b1
parentf140479fc7e1c35a6c0956f9f384da05f9f088b0 (diff)
downloadydb-5b5d57c2bf1cddbcfec07a78d4111599063c976a.tar.gz
YQL-14521: log unexpected event
ref:e430156558f52e1cb256976cfb844aec390f02c5
-rw-r--r--ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h2
1 files changed, 1 insertions, 1 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 5163aed60f..f0c2582385 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
@@ -206,7 +206,7 @@ protected:
hFunc(IDqSourceActor::TEvSourceError, OnSourceError);
default: {
CA_LOG_C("TDqComputeActorBase, unexpected event: " << ev->GetTypeRewrite() << " (" << GetEventTypeString(ev) << ")");
- InternalError(TIssuesIds::DEFAULT_ERROR, "Unexpected event");
+ InternalError(TIssuesIds::DEFAULT_ERROR, TStringBuilder() << "Unexpected event: " << ev->GetTypeRewrite() << " (" << GetEventTypeString(ev) << ")");
}
}
} catch (const NKikimr::TMemoryLimitExceededException& e) {