Skip to content
Snippets Groups Projects
Commit a1ceb9ac authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-320: clear running flag so thread loops can exit

parent 804f9325
No related branches found
No related tags found
2 merge requests!308Resolve TMSS-495,!306Resolve TMSS-320
...@@ -1456,6 +1456,7 @@ class BusListener: ...@@ -1456,6 +1456,7 @@ class BusListener:
# check if the _listen_loop was started successfully # check if the _listen_loop was started successfully
logger.debug("waiting for thread %s to be running...", thread_name) logger.debug("waiting for thread %s to be running...", thread_name)
if not (thread_started_event.wait(timeout=10) and thread.is_alive()): if not (thread_started_event.wait(timeout=10) and thread.is_alive()):
self._running.clear() # clear running flag so thread loops can exit
msg = "Could not fully start listener thread: %s" % (thread_name,) msg = "Could not fully start listener thread: %s" % (thread_name,)
logger.error(msg) logger.error(msg)
raise MessagingRuntimeError(msg) raise MessagingRuntimeError(msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment