From f1ee8097faa83a4b429c96ee7c1bc819aa4859dc Mon Sep 17 00:00:00 2001 From: Sergey Yakubov <sergey.yakubov@desy.de> Date: Mon, 18 Nov 2019 16:36:15 +0100 Subject: [PATCH] fix --- common/cpp/src/request/request_pool.cpp | 2 -- tests/automatic/bug_fixes/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/common/cpp/src/request/request_pool.cpp b/common/cpp/src/request/request_pool.cpp index 44bbe5da2..ccf724e36 100644 --- a/common/cpp/src/request/request_pool.cpp +++ b/common/cpp/src/request/request_pool.cpp @@ -109,7 +109,6 @@ Error RequestPool::WaitRequestsFinished(uint64_t timeout_ms) { } void RequestPool::StopThreads() { - log__->Debug("trying to stop threads"); mutex_.lock(); quit_ = true; mutex_.unlock(); @@ -120,7 +119,6 @@ void RequestPool::StopThreads() { threads_[i].join(); } } - } } diff --git a/tests/automatic/bug_fixes/CMakeLists.txt b/tests/automatic/bug_fixes/CMakeLists.txt index d4bf838ed..35f942b1a 100644 --- a/tests/automatic/bug_fixes/CMakeLists.txt +++ b/tests/automatic/bug_fixes/CMakeLists.txt @@ -1,7 +1,7 @@ if (UNIX) add_subdirectory(receiver_cpu_usage) add_subdirectory(consumer_python_memleak) + add_subdirectory(error-sending-data-using-callback-method) endif() add_subdirectory(producer_send_after_restart) -add_subdirectory(error-sending-data-using-callback-method) \ No newline at end of file -- GitLab