diff options
author | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-10 09:22:19 +0300 |
---|---|---|
committer | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-10 09:36:57 +0300 |
commit | b359f0072dbc794d0287c26984dd0ea0a2c27efc (patch) | |
tree | 3b657394062072e2def1126d7c994dc4d676a7e0 /contrib/libs | |
parent | 8217cfcdf98a5dbca1e6dba58e8e80b4f07464b1 (diff) | |
download | ydb-b359f0072dbc794d0287c26984dd0ea0a2c27efc.tar.gz |
Y_VERIFY->Y_ABORT_UNLESS at '^contrib/[^y]'
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/grpc/src/core/lib/surface/call.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/grpc/src/core/lib/surface/call.cc b/contrib/libs/grpc/src/core/lib/surface/call.cc index 589672dc9b..1eb84282d9 100644 --- a/contrib/libs/grpc/src/core/lib/surface/call.cc +++ b/contrib/libs/grpc/src/core/lib/surface/call.cc @@ -1855,7 +1855,7 @@ grpc_call_error FilterStackCall::StartBatch(const grpc_op* ops, size_t nops, InternalRef("completion"); if (!is_notify_tag_closure) { - Y_VERIFY(grpc_cq_begin_op(cq_, notify_tag)); + Y_ABORT_UNLESS(grpc_cq_begin_op(cq_, notify_tag)); } bctl->set_pending_ops(pending_ops); |