diff options
author | ilnurkh <[email protected]> | 2023-10-17 08:15:44 +0300 |
---|---|---|
committer | ilnurkh <[email protected]> | 2023-10-17 09:00:07 +0300 |
commit | 784925324fd115c37bc98c5bbfe64c15f9966d74 (patch) | |
tree | f763f6eaacfcd4757d249977aaddfa4e9b2a355b /library/cpp/neh/netliba_udp_http.cpp | |
parent | d6c75d9ec33559b29eb61a8f2e17cbca30fd5ae2 (diff) |
Y_FAIL->Y_ABORT at '^li'
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'library/cpp/neh/netliba_udp_http.cpp')
-rw-r--r-- | library/cpp/neh/netliba_udp_http.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/neh/netliba_udp_http.cpp b/library/cpp/neh/netliba_udp_http.cpp index 1e89347a13e..b0b0e0ff03b 100644 --- a/library/cpp/neh/netliba_udp_http.cpp +++ b/library/cpp/neh/netliba_udp_http.cpp @@ -322,7 +322,7 @@ namespace NNehNetliba { void SendResponse(const TGUID& reqId, TVector<char>* data) override { if (data && data->size() > MAX_PACKET_SIZE) { - Y_FAIL( + Y_ABORT( "data size is too large; data->size()=%" PRISZT ", MAX_PACKET_SIZE=%" PRISZT, data->size(), MAX_PACKET_SIZE); } |