diff options
author | alexvru <alexvru@ydb.tech> | 2022-08-31 23:27:25 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2022-08-31 23:27:25 +0300 |
commit | fc8096bf8173562afc5da58dbbb019af2ce1ee2f (patch) | |
tree | 024a7cf9a1376497a907f8f69c5dfcd2df243971 /library | |
parent | 824aa0bc51a75b892a09253e2edbefe396e997fd (diff) | |
download | ydb-fc8096bf8173562afc5da58dbbb019af2ce1ee2f.tar.gz |
Do not hold compaction when having active snapshots
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/neh/http2.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/cpp/neh/http2.cpp b/library/cpp/neh/http2.cpp index 83e8db0980..fb8b08fd81 100644 --- a/library/cpp/neh/http2.cpp +++ b/library/cpp/neh/http2.cpp @@ -24,6 +24,7 @@ #include <util/thread/factory.h> #include <util/thread/singleton.h> #include <util/system/sanitizers.h> +#include <util/system/thread.h> #include <atomic> @@ -1042,6 +1043,7 @@ namespace { } void DoExecute() override { + TThread::SetCurrentThreadName("NehHttpConnMngr"); while (true) { { TGuard<TMutex> g(PurgeMutex_); |