diff --git a/common/cpp/src/request/request_pool.cpp b/common/cpp/src/request/request_pool.cpp
index 44bbe5da2f4f43963a1f5a6ee80d179cc3897c00..ccf724e367b7c3344c3efc8253f881b89223b73c 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 d4bf838ed571872c45f93ba38b013305e2d6af67..35f942b1a84999354a8a4f6e58c6fada0170823f 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