# HG changeset patch # User Marcin Kuzminski # Date 2017-11-28 17:23:48 # Node ID f78c4999c67b2200c20bdfacab87411594302967 # Parent 80234d046faa97abcd18a7d6bf2ccf5454ec3668 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):