# HG changeset patch # User Marcin Kuzminski # Date 2017-11-28 17:23:48 # Node ID 61d5eaf59d0c1e16e772942cc8bf7c569521d06d # Parent bd3f17a5d7b8f2bb176d4581a3f4017062d0b2f1 logging: don't stop logging on "waiting for background thread to finish" This is misleading as we're waiting for something and didn't finalize. diff --git a/rhodecode/lib/hooks_daemon.py b/rhodecode/lib/hooks_daemon.py --- a/rhodecode/lib/hooks_daemon.py +++ b/rhodecode/lib/hooks_daemon.py @@ -160,6 +160,7 @@ class HttpHooksCallbackDaemon(ThreadedHo self._callback_thread.join() self._daemon = None self._callback_thread = None + log.debug("Background thread done.") def prepare_callback_daemon(extras, protocol, use_direct_calls):