diff options
author | innokentii <innokentii@yandex-team.com> | 2022-12-07 22:57:04 +0300 |
---|---|---|
committer | innokentii <innokentii@yandex-team.com> | 2022-12-07 22:57:04 +0300 |
commit | 613dcecbea7f8bd6c041c2caef1c8b85640a0760 (patch) | |
tree | 815dcaeafd6a387700765e72890827688b4dccf7 /library/cpp/neh/http2.cpp | |
parent | 026646ec03982a24cd4b0488c94094b1ead8ce10 (diff) | |
download | ydb-613dcecbea7f8bd6c041c2caef1c8b85640a0760.tar.gz |
TContiguousData reimplement backend
replace shared_data controlling backend with internal one
Diffstat (limited to 'library/cpp/neh/http2.cpp')
-rw-r--r-- | library/cpp/neh/http2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/neh/http2.cpp b/library/cpp/neh/http2.cpp index e4b024d093..8cc693e9a3 100644 --- a/library/cpp/neh/http2.cpp +++ b/library/cpp/neh/http2.cpp @@ -964,8 +964,8 @@ namespace { inline bool Get(THttpConnRef& conn, size_t addrId) { #ifdef DEBUG_STAT TDebugStat::ConnTotal.store(TotalConn.Val(), std::memory_order_release); - TDebugStat::ConnActive(Active(), std::memory_order_release); - TDebugStat::ConnCached(Cache_.Size(), std::memory_order_release); + TDebugStat::ConnActive.store(Active(), std::memory_order_release); + TDebugStat::ConnCached.store(Cache_.Size(), std::memory_order_release); #endif return Cache_.Get(conn, addrId); } |