aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Makunin <igor.makunin@gmail.com>2022-02-10 11:26:34 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 15:58:17 +0300
commitaae4145d949ef4dddd30387a038da20a57b84c20 (patch)
tree97a2fc0789b22e0fab5c44dbee091eb01fb33259
parent4ea9ba77900523cdb8765a260b28d0a7ef906806 (diff)
downloadydb-aae4145d949ef4dddd30387a038da20a57b84c20.tar.gz
KIKIMR-12580: replace Y_VERIFY_DEBUG with YQL_ENSURE
ref:20be5c56510eb4bf0f313b820e30b826da622240
-rw-r--r--ydb/core/kqp/executer/kqp_executer_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kqp/executer/kqp_executer_impl.h b/ydb/core/kqp/executer/kqp_executer_impl.h
index 43945c1135..6ecf78ab05 100644
--- a/ydb/core/kqp/executer/kqp_executer_impl.h
+++ b/ydb/core/kqp/executer/kqp_executer_impl.h
@@ -250,7 +250,7 @@ protected:
LOG_T("Sending channels info to compute actor: " << computeActorId << ", channels: " << channelIds.size());
bool sent = this->Send(computeActorId, channelsInfoEv.Release());
- Y_VERIFY_DEBUG_S(sent, "Failed to send event to " << computeActorId.ToString());
+ YQL_ENSURE(sent, "Failed to send event to " << computeActorId.ToString());
}
}