simplify thread daemon usage

This commit is contained in:
Blake Harnden 2020-02-26 15:29:19 -08:00
parent 21dfaf7d66
commit e1c9155ba7
4 changed files with 8 additions and 7 deletions

View file

@ -146,8 +146,9 @@ def start_streamer(stream: Any, handler: Callable[[core_pb2.Event], None]) -> No
:param handler: function that handles an event
:return: nothing
"""
thread = threading.Thread(target=stream_listener, args=(stream, handler))
thread.daemon = True
thread = threading.Thread(
target=stream_listener, args=(stream, handler), daemon=True
)
thread.start()

View file

@ -949,8 +949,8 @@ class CoreHandler(socketserver.BaseRequestHandler):
file_name,
{"__file__": file_name, "coreemu": self.coreemu},
),
daemon=True,
)
thread.daemon = True
thread.start()
# allow time for session creation
time.sleep(0.25)